sendmail
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sendmail [2010/03/24 23:07] – created k2patel | sendmail [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Sendmail ====== | ====== Sendmail ====== | ||
+ | |||
+ | ==== How to create .cf file from .mc ==== | ||
+ | It is always best practice to build .cf file from .mc | ||
+ | <code bash> | ||
+ | m4 sendmail.mc > / | ||
+ | </ | ||
+ | |||
+ | ==== Rebuild aliases ==== | ||
+ | when you modify / | ||
+ | Possibly you see following message. \\ | ||
+ | //**alias database / | ||
+ | |||
+ | Simply run following and will fix it. | ||
+ | |||
+ | <code bash> | ||
+ | newaliases | ||
+ | </ | ||
+ | OR\\ | ||
+ | run ' | ||
+ | OR | ||
+ | <code bash> | ||
+ | sendmail -bi | ||
+ | </ | ||
+ | |||
+ | ==== Error Code 126 ==== | ||
+ | Following messages you see in log and mail. | ||
+ | * DSN: unknown mailer error 126 | ||
+ | * stat=unknown mailer error 126 | ||
+ | * runscript.sh: | ||
+ | * 554 5.3.0 unknown mailer error 126 | ||
+ | |||
+ | It is because script you call to catch email OR execute when received has permission issue. \\ | ||
+ | Simply set permission on that script to " | ||
+ | the names i have used those are i came across till now. so chances are there you see something diff. \\ | ||
+ | |||
+ | Whole path need to be executable by that user. | ||
==== How to change outbound IP ==== | ==== How to change outbound IP ==== | ||
Line 11: | Line 47: | ||
NOTE : change 192.168.1.22 with your IP. | NOTE : change 192.168.1.22 with your IP. | ||
+ | |||
+ | ==== Clear queue ==== | ||
+ | |||
+ | Check if you want to delete all mail. | ||
+ | <code bash> | ||
+ | mailq | ||
+ | OR | ||
+ | sendmail -bp | ||
+ | </ | ||
+ | |||
+ | Now if you want to delete everything in queue just delete everything inside mqueue folder.\\ | ||
+ | In CentOS it is located at **/ | ||
+ | <code bash> | ||
+ | rm -rf / | ||
+ | </ | ||
+ | |||
+ | If there is too many files to remove you better use option like xargs with find. | ||
+ | <code bash> | ||
+ | find / | ||
+ | </ |
sendmail.1269472028.txt.gz · Last modified: 2020/08/10 02:29 (external edit)