The information on this page were configurations I needed to make on my local home server/desktops to send mail. The server has automated jobs and needs to contact/notify me when ever the scripts detects errors or issues that needs my attention. STMP normally works out of the box... but...
Due to ISP BLOCKING SMTP outbound port, to get "send" mail working from home
-- need to relay it with, for example, google's smtp servers.
[ /etc/hostname and /etc/mailname ] can be "internal" hostnamesUSE << ALT >> EMAIL ACCT while configuring login/passwd for relayi.e. does not need to be accessible from external networksNote: if ISP was not blocking SMTP port, then hostname will need to be "valid".
Many SMTP relay and end points will try to verify From: address to help curb spamming.
!!! DO NOT USE PRIMARY EMAIL ACCT !!!Remember, this is for automated notifications, so using an alternate email account can help give messages instant recognisability that may require immediate attention.passwords are written in the [ CLEAR ] in these config files --- so yes, email will come "from" this alt acct --- [ prevent accidental primary account exposure when doing things like tar'ing folder for archival purposes ]
send a test msg (or use "email verification" mode): echo "msg body" | mail -s "msg subj" username@gmail.com if things still bomb, make sure to look at log files: sendmail -bv username@gmail.com # "email verification": ACL test - does not go in any inbox cat /var/log/mail.log | tail -20
just follow these instructions: (pretty much works right out of the box) http://www.manu-j.com/blog/wordpress-exim4-ubuntu-gmail-smtp/75/ - no need to do any thing with the [ /etc/exim4/passwd.client ] file as some of the comments alluded to... handy commands while testing: sudo mailq # show mail queue sudo exiqgrep -z -i | sudo xargs exim -Mrm # nuke all msgs in queue
first, the following may be needed: nuke existing postfix install and re-install it to start with a clean slate. - sudo apt-get purge postfix - sudo aptitude install postfix - sudo dpkg-reconfigure postfix then follow up with this link: http://souptonuts.sourceforge.net/postfix_tutorial.html - jump down to section 3: ( generating certs ) - these will be used to build some dummy SSL certs - follow instructions to 4.10: ( common postfix commands ) by now, a few pem files were created and copied into the postfix folder [ SSL + SASL ]... a few [ postmap ] hash files are also created... and [ main.cf ] has a bunch of additions. - don't forget to setup services startup and shutdown links: cd /etc/rc3.d sudo ln -s ../init.d/postfix S80postfix sudo ln -s ../init.d/postfix K80postfix cd /etc/rc5.d sudo ln -s ../init.d/postfix S80postfix sudo ln -s ../init.d/postfix K80postfix NOTE! to make TLS work properly: http://www.google.com/support/forum/p/Google%20Apps/thread?tid=0914d0fb09f06c2d&hl=en append the following certs to [ cacert.pem ]: Thawte_Premium_Server_CA & Equifax_Secure_CA handy commands while testing: mailq # show mail queue sudo postsuper -d ALL # nuke all msgs in queue
currently, am not running sendmail... will revisit this when sendmail makes a comeback...
http://linuxgazette.net/issue72/teo.html after editing /etc/aliases, run the command: newaliases # sendmail postaliases /etc/aliases # postfix# exit # --- start of example entries in /etc/aliases --- # simple aliases to an address root: johndoe, johndoe@domain.tld john: johndoe@another.domain.tld, johndoe@some.where.else # example of a mailing list in aliases file the_project: john, jane, bob@example.net # but, use an external file to keep mailing lists under control... # send mail to address, addresses in a file and to a file announce: johndoe, :include: /etc/Exim/staff, /var/mail/log/announce # target can be piped to a command majordomo: "|/usr/mail/majordomo ..." autohelp: "|/usr/etc/autohelp ..." ppp-list: "|/usr/local/bin/gateit local.lists.ppp" # --- end of examples --- example email list from the [ :include: ] directive # --- start example /etc/Exim/staff --- johndoe@example.com janedoe@example.org bob@example.net # --- end example /etc/Exim/staff ---