Posts tagged tips
Postfix queue management
Feb 7th
Never been in a situation where your primary mail server is being delivering a newsletter (for instance), which could be a very long process, and you are sitting in front of your mail client waiting for an urgent mail, which won’t be delivered until the mail server queue is empty?
There is very useful tool provided with Postfix which could save us in those kind of situations (at least, it saved me multiple times) : postsuser. postsuser helps in the management of the mail queue.
More >
Recursively delete .svn directories
Jan 6th
Sometimes it is good to remember simple tips. To recursively delete .svn directories:
rm -rf `find . -type d -name .svn`