Every time I come to recreate the Postfix database file when I edit the file /etc/postfix/virtual.cf I forget what command I need to recreate virtual.cf.db
Hopefully I’ll check my blog next time. The command is postmap. Hope this is useful for someone else too!
postmap /etc/postfix/virtual.cf
/etc/init.d/postfix restart
Funnily enough I do the same thing quite often as well. Guess I’ll just have to remember to check your blog next time!
It gets me every time too. I sit there thinking that I know I have to rebuild the hash files but I can never remember the command – probably because of its name, which although technically correct in that its to do with postfix map files, isn’t that obvious.
Me too. I stared at the command prompt thinking it was “hash” something or other. It’s actually not that easy to find an answer either. I had to check more than a page or two to find postmap.
Not anymore eh? 🙂
Editing the files and running postmap is fun 🙂 but webmin/virtualmin is faster and you don’t have to remember to postmap 🙂
I always forget this too… My solution was to just put a comment at the top of my virtual.cf file:
# postmap /etc/postfix/virtual.cf && /etc/init.d/postfix restart
So when I’ve finished editing, copy that line, save the file, paste onto the prompt… You don’t even have to look at your blog, it just there waiting for you!! 🙂
How the hell am I supposed to remember the address for this blog next time I forget the same command? Some 5th or 6th googleing led me here.
But thanks anyway. At least you helped me this time.
Is it necessary? Without postmap file changes will not take effect?
make is your friend:
/etc/postfix/Makefile:
virtual.cf.db: virtual.cf
postmap virtual.cf
/etc/init.d/postfix reload
After edit, run make in /etc/postfix. Add extra targets as desired.
NOTE: make sure those indents are TABS, not spaces! Makefile 101!