Mark Bixby TCSD/vCSY April 24, 2003 Using Sendmail on MPE April 24, 2003 Using Sendmail on MPE - Solution Symposium West Page 1
Major functionality: •send SMTP e-mail •receive SMTP e-mail to local mailboxes, programs, or files •aliases can be created which map to local mailboxes, programs, files, or remote mailboxes product overview •powerfully flexible configuration language Built from: •Sendmail 8.12.1 •Sleepycat Berkeley DB library 3.3.
patch strategy April 24, 2003 New versions of Sendmail will use normal OS release and patch processes Using Sendmail on MPE - Solution Symposium West Page 3
•CERT CA-2003-07 and CA-2003-12 buffer overflows •7.0 – SMLHD15A (assumes SMLGDT8A is already installed) security patches •7.5 – SMLHD16A •the 7.0 patches can be manually installed on 6.0 and 6.
•released as 7.0 patch SMLGDT8A •shipped in 7.
•Sendmail A.01.00 for MPE/iX will be fully supported by RC and GSE/WTEC support April 24, 2003 •Customers who call with questions regarding unsupported bixby.org freeware Sendmail 8.9.1 should be encouraged to upgrade to Sendmail A.01.
•Uses the same scheme that was introduced with Apache A.02.00 •The MPE group A0100.
•/SENDMAIL/PUB/JDAEMON – batch job for running the server daemon •/SENDMAIL/PUB/SENDMAIL – symlink to /SENDMAIL/CURRENT/SENDMAIL distribution highlights •/SENDMAIL/CURRENT/SENDMA IL – combined server daemon and local mail submission program •/SENDMAIL/CURRENT/bin – dnscheck, hoststat, m4, mailq, newaliases, purgestat, vacation •/SENDMAIL/CURRENT/sbin – editmap, mailstats, makemap, praliases, sendmail, smrsh April 24, 2003 Using Sendmail on MPE - Solution Symposium West Page 8
•/SENDMAIL/CURRENT/cf – directory tree for building *.cf config files; see the README file! •/SENDMAIL/CURRENT/doc/op/ op.ps – Sendmail Installation and Operation Guide – READ IT! distribution highlights (cont.) •/SENDMAIL/CURRENT/etc – contains the POSIX shell profile for Sendmail along with the sample config files installed to /etc/mail •/SENDMAIL/CURRENT/man – man page documentation, I.e.
/usr/bin/m4 /usr/bin/mailq /usr/bin/mailstats /usr/bin/newaliases /usr/bin/praliases /usr/bin/vacation hpux compatibility symbolic links /usr/lib/sendmail /usr/sbin/editmap /usr/sbin/hoststat /usr/sbin/mailstats /usr/sbin/makemap /usr/sbin/newaliases /usr/sbin/purgestat /usr/sbin/sendmail /usr/sbin/smrsh April 24, 2003 Using Sendmail on MPE - Solution Symposium West Page 10
•all config files live in /etc/mail which is populated from /SENDMAIL/CURRENT/etc/mail.sa mple at installation time if the /etc/mail files do not already exist config files •all config files must be owned by the user SERVER.
•access – database map used to accept or reject incoming mail from selected domains •aliases – database map for defining local recipient names in addition to the standard USER.ACCOUNT mailboxes config files (cont.
•mailertable – database map to override mail routing for specified domains •sendmail.cf – configures the mail daemon server •sendmail.pid – the POSIX PID of the currently running server config files (cont.) •statistics – binary file used to collect delivery statistics •submit.
• submit.cf and sendmail.cf are created from macro files expanded by the m4 utility • you can edit submit.cf and sendmail.cf directly to make MINOR parameter changes: # "Smart" relay host DSmy.relay.host.name configuring *.cf files • major functionality changes REQUIRE you to edit the macro files and expand with m4 • so just play it safe and ALWAYS edit the macro files and expand with m4 for ALL changes: define(`SMART_HOST', `my.relay.host.
To generate submit.cf: 1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS -L 3. shell/iX> cd /SENDMAIL/CURRENT/cf/cf configuring *.cf files (submit.cf for the mail submission program) 4. shell/iX> cp submitmpeix.mc.sample submitmpeix.mc 5. edit submit-mpeix.mc with the bytestream file editor (i.e. vi) of your choice to make your changes 6. shell/iX> m4 ../m4/cf.m4 submit-mpeix.mc >submitmpeix.cf 7. shell/iX> cp submit-mpeix.cf /etc/mail/submit.
define(`confCF_VERSION', `Submit')dnl configuring *.cf files (submitmpeix.mc.sample) define(`__OSTYPE__',`')dnl dirty hack to keep proto.m4 from complaining define(`_USE_DECNET_SYNTAX_', `1')dnl support DECnet define(`confRUN_AS_USER', `SERVER.
To generate sendmail.cf: 1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L 3. shell/iX> cd /SENDMAIL/CURRENT/cf/cf configuring *.cf files (sendmail.cf for the mail server program) 4. shell/iX> cp genericmpeix.mc.sample genericmpeix.mc 5. edit generic-mpeix.mc with the bytestream file editor (i.e. vi) of your choice to make your changes 6. shell/iX> m4 ../m4/cf.m4 generic-mpeix.mc >genericmpeix.cf 7. shell/iX> cp generic-mpeix.cf /etc/mail/sendmail.
OSTYPE(mpeix)dnl DOMAIN(generic)dnl define(`confFORWARD_PATH', `$z/.forward')dnl FEATURE(masquerade_envelope)dnl configuring *.cf files (genericmpeix.mc.
•For ALL of the gory details, please see the /SENDMAIL/CURRENT/doc/op/o p.ps Sendmail Installation and Operation Guide section 5 – “The Whole Scoop on the Configuration File”. *.cf internals •This section is 45 pages long and cannot be fully covered by a few slides or speaker notes! •Few customers are expected to delve into *.cf internals; those who do are likely to be smart enough to answer their own questions.
•macros named with a single letter or a word in {braces} *.cf internals (D – define macro) •user defined macros should use uppercase names only •macros are dereferenced by $name, where name includes the braces if present # "Smart" relay host (may be null) DSsmart.relay.
•a class can be thought of as a macro containing multiple values •C defines with constants, F defines from files, pipes, or database maps: *.
•defines mailer programs and their interfaces •highly unlikely to be modified by customers! *.
•defines the format of header lines inserted into the message •macro references in the header template will be expanded •rulesets can be associated with headers to perform validation *.
*.
•the complicated, nasty, but powerful heart of sendmail *.
•$* Match zero or more tokens *.
Substitute indefinite token n from LHS •$n •$[name$] *.
•a snippet from ruleset 4: # delete duplicate local names R$+ % $=w @ $=w u%host@host => u@host $1 @ $2 •use sendmail –bt to test rulesets: *.cf internals (a simple example from ruleset 4) echo "4 foo%mpetest@mpetest" | sendmail -bt ADDRESS TEST MODE (ruleset 3 NOT automatically invoked) Enter > final input: foo % mpetest @ mpetest final returns: foo @ mpetest •MUCH has been omitted from this discussion; please see op.
•typically used by optional sendmail features like access_db •Berkeley DB database hash or btree files containing extra configuration data in key/value pairs configuring database map files •maintained with the makemap and editmap utilities •by convention, a map file named “foo” contains the ASCII input data, whereas “foo.db” contains the compiled binary database structures •in commands and *.cf files, a map file reference of “foo” actually refers to “foo.
MPETEST:/BIXBY/PUB> cat - >foo key1 value1 two abcdef abra cadabra :eod MPETEST:/BIXBY/PUB> makemap hash foo ls -l foo* -rw-r--r-BIXBY foo 1 MGR.BIXBY 36 Feb 25 13:52 -rw-r--r-1 MGR.BIXBY BIXBY 49152 Feb 25 13:52 foo.
•defining a smart relay host in sendmail.cf to route all outbound email via a single mail gateway common non-default config changes •define alternate routing for certain outbound mail domains via the mailertable feature •creating aliases for inbound e-mail instead of using the basic USER.ACCT@host.
•a special type of map file containing one or more commadelimited values per key •/etc/mail/aliases and aliases.db aliases database map •maintained by SERVER.SENDMAIL with the newaliases and praliases commands •defines username aliases for mail being delivered to the local machine, I.e. postmaster@local.host.name •installation default entries: postmaster: SERVER.
•left-hand side is the user alias •separated by a colon •right-hand side is one or more delivery destinations: aliases database map (cont.) – USER.ACCOUNT or user@host.name or another alias – /path/to/local/file for appending – :include: /file/of/aliases (plaintext ASCII file) – “|/program/file parm1 parm2 parm3 …” • local usernames may be escaped with a backslash (I.e. \USER.
•an optional ASCII file named .forward residing in the local user’s home group which tells sendmail where to forward the user’s mail .forward files •format is the same as the righthand side of an aliases entry, I.e. one or more comma-separated destinations •can be used to invoke the vacation autoresponder: \USER.ACCOUNT, "|/SENDMAIL/CURRENT/bin/vacation USER.
access_db feature – accept or reject incoming e-mail based on envelope address or relaying mail server name April 24, 2003 1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L 3. /bin/cat - >/etc/mail/access imaspammer.com REJECT :EOD 4.
1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L domaintable feature – rewrite domain names in e-mail headers 3. /bin/cat >/etc/mail/domaintable oldcompany.com newcompany.com :EOD 4.
1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L genericstable feature – rewrite user and/or domain addresses in outgoing e-mail headers April 24, 2003 3. /bin/cat >/etc/mail/genericstable USER.ACCOUNT@my.local.host customer_servce@company.com :EOD 4. makemap hash /etc/mail/genericstable
1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L mailertable feature – override default mail routing in sendmail.cf April 24, 2003 3. /bin/cat >/etc/mail/mailertable .bitnet smtp:relay.bit.net :EOD 4.
1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L virtusertable feature – remap incoming user and hostnames to local users 3. /bin/cat >/etc/mail/virtusertable info@bar.com INFO.BAR info@foo.com INFO.FOO :EOD 4. makemap hash /etc/mail/virtusertable
starting the mail daemon •Make sure a syslog daemon is running before you start the mail daemon! •To start the MPE FOS syslog daemon, :STREAM JSYSLOGD.PUB.SYSLOG •To start the mail daemon, :STREAM JDAEMON.PUB.
stopping the mail daemon •Use the POSIX kill signal from SERVER.SENDMAIL or any user with SM capability: kill $(head -n 1 /etc/mail/sendmail.
•interactively: mailx someuser@some.host Subject: hello world Hi, How are you doing? :EOD EOT sending e-mail with mailx •from a pipe: echo "How are you doing?" | mailx -s "hello world" someuser@some.host •from a disk file: mailx -s "hello world" someuser@some.
1. /bin/cat - >message.txt To: someuser@some.host Cc: otheruser@other.host Bcc: secretuser@another.host Subject: hello world Hi there! :EOD sending e-mail with SENDMAIL 2. /SENDMAIL/CURRENT/SENDMAIL -t
1. /bin/cat - >message.txt From: forger@foobar.com To: someuser@some.host Cc: otheruser@other.host Bcc: secretuser@another.host Subject: hello world Hi there! :EOD sending e-mail with forged headers 2. /SENDMAIL/CURRENT/SENDMAIL -t –f forger@foobar.com
1. mailx creates a fully-formatted message and passes it to SENDMAIL as configured in /etc/mailx.rc sending e-mail – how it works (client) 2. SENDMAIL reads a fully formatted message from stdin and queues the message in /var/spool/clientmqueue 3. SENDMAIL attempts to contact the mail daemon on localhost port 25. 4.
1. JDAEMON processes /var/spool/clientmqueue once at startup to handle any messages submitted while JDAEMON wasn’t running 2. new messages are read from port 25 using SMTP and queued in /var/spool/mqueue sending e-mail – how it works (server) 3. the remote mail server is resolved via DNS, and a connection is tried to port 25 4. if the message is delivered successfully, it is removed from mqueue, else it remains until mqueue is processed again by the local mail daemon 5.
•invoke /bin/mailx with no parameters, and it will read e-mail from /usr/mail/USER.
•incoming e-mail will be delivered to programs specified in the aliases database or .
1. JDAEMON listens for incoming SMTP connections on port 25 2. Messages are read using SMTP protocol and queued to /var/spool/mqueue receiving e-mail – how it works 3. If the destination address appears to be local, the aliases database and .forward file (if any) is used to resolve the final delivery address 4. sendmail.cf determines the mailer to be used based on the final delivery address 5. Local messages get delivered by /bin/tsmail to /usr/mail/USER.ACCOUNT 6.
•must create new JDAEMON from /SENDMAIL/CURRENT/JDAEMON .sample •all config files reside in /etc/mail instead of /SENDMAIL/PUB/etc migrating from freeware 8.9.1 •8.9.1 sendmail.cf is NOT compatible with 8.12.1 •copy all 8.9.1 ASCII map files to /etc/mail and rebuild with makemap and newaliases •8.9.1 queued messages won’t be seen by 8.12.1 •8.12.1 uses two queues (/var/spool/clientmqueue and mqueue) instead of 8.9.
•8.9.1 would submit new messages directly to the queue disk files, but 8.12.1 speaks SMTP to localhost port 25 migrating from freeware 8.9.1 (cont.) •8.12.1 uses two main config files, /etc/mail/submit.cf for submitting new messages, and sendmail.cf for general mail routing •8.12.1 does not include the Majordomo mailing list software that was bundled with 8.9.1.
•LDAP directory lookups mpe/ix implementation issues (features not implemented) •TLS/SSL encrypted e-mail transport •SASL secure authentication •mail filtering •optional chroot()-based security features •optional nice()-based dispatching priority adjustments April 24, 2003 Using Sendmail on MPE - Solution Symposium West Page 52
•Sendmail programs don’t read stdin terminal keyboard input correctly. Workarounds: – /bin/cat - | makemap hash mymap – makemap hash mymap
•Sendmail expects a full implementation of setuid(), setgid(), and a superuser uid of 0 mpe/ix implementation issues (setuid/setgid program file bits) •The main sendmail porting challenge was to provide such a uid/gid emulation layer •This emulation is enabled via the /SENDMAIL/CURRENT/SENDMAIL program file setuid and setgid bits which are not currently used by MPE, I.e.: chmod u+s,g+s /SENDMAIL/CURRENT/SENDMAIL -rwsr-sr-x 1 MGR.
• the #1 sendmail problem! • before using sendmail, run the dnscheck script: 1. :HELLO SERVER.SENDMAIL 2. :XEQ SH.HPBIN.SYS –L dns issues 3.
• single-token hostname? I.e. uname –n returns “jazz”? • domain name in /SYS/NET/RESLVCNF? I.e. “domain external.hp.com”? • one or more nameserver entries in RESLVCNF? dns issues (cont.
•the #2 sendmail problem! •your 3000 needs to query port 53 on DNS servers to resolve the destination mail server hostname •your 3000 needs to receive DNS query answers •your 3000 listens on its port 25 for incoming e-mail firewall issues •your 3000 needs to connect to port 25 on destination mail servers •does your firewall allow your 3000 to talk to the Internet? •does your firewall allow the Internet to talk to your 3000? •firewall blocking results in connection refused, timeouts, or just no activity!
•check syslog first! •if nothing in syslog: troubleshooting – if your third-party spooling package has an embedded syslog daemon, you will probably need to use that one instead of Syslog/iX – is the syslog daemon running? – does the syslog daemon have read access to the config file and write access to the log file? – is syslog configured to log mail events? •if syslog or e-mail message headers show strange timestamps, verify TZ is set properly, preferably in your system logon UDC April 24, 2003 Using S
•if syslog shows DNS lookup failures: – run the dnscheck script to verify DNS is configured properly – verify that your firewall allows your 3000 to talk to DNS servers on port 53 troubleshooting (cont.) •if syslog shows connection failures to remote mail servers, verify that your firewall allows your 3000 to connect to port 25; if it does not, you may need to configure sendmail.
•if local users are submitting messages that aren’t being delivered: troubleshooting (cont.) April 24, 2003 – verify that JDAEMON is running; if it is not, messages will be queued in /var/spool/clientmqueue – transient network problems may cause a backlog in the mail daemon queue /var/spool/mqueue; run /SENDMAIL/CURRENT/bin/mailq as SERVER.
•if remote users are sending messages that aren’t being delivered to the local 3000: troubleshooting (cont.) April 24, 2003 – check syslog for remote connection attempts; if there are none, does your firewall allow connections to port 25 on your 3000, and are your 3000’s DNS entries visible to the remote users? – verify that the remote users are using valid e-mail addresses for your 3000, I.e. USER.
•if a sendmail config change doesn’t appear to take effect: troubleshooting (cont.) April 24, 2003 – stop and restart the mail daemon when making *.cf changes – if you changed an ASCII database map file, don’t forget to run makemap or editmap to compile the binary *.db file – if you changed ASCII /etc/mail/aliases, don’t forget to run newaliases to compile the binary /etc/mail/aliases.
•mind-bending amounts of low-level debugging output can be generated with the /SENDMAIL/CURRENT/SENDMAIL debug flags parameter •-dcategory.level debug flags •-d12 Set category 12 to level 1 •-d12.3 Set category 12 to level 3 •-d3-17 to level 1 Set categories 3 through 17 •-d3-17.
•syslog verbosity can be increased •the default log level of 9 covers most failures and mundane successes •override via sendmail.
syslog message formats The MPE user USER.ACCT on the local e3000 with a hostname of myhost.mydomain.com has just submitted a new message with 1 recipient consisting of a message body size of 5 bytes: Feb 6 12:14:42 localhost sendmail[65622]: g16HEgik065622: from=USER.ACCT, size=5, class=0, nrcpts=1, msgid=<200202061714.g16HEgik065622@myhost.mydomain.com>, relay=USER.ACCT@localhost The new message is being relayed via the local host, i.e.
syslog message formats (cont.) The new message has been successfully queued on the local host and will eventually be delivered to destuser@remhost.mydomain.com: Feb 6 12:14:43 localhost sendmail[65622]: g16HEgik065622: to=destuser@remhost.mydomain.com, ctladdr=USER.ACCT (153/126), delay=00:00:01, xdelay=00:00:01, mailer=relay, pri=30091, relay=localhost [127.0.0.1], dsn=2.0.
syslog message formats (cont.) In this next example, the remote user destuser@remhost.mydomain.com is sending an incoming message to some user on the local e3000. The remote mail server that has connected to your local e3000 is remhost.mydomain.com, and its IP address is 192.168.0.1: Feb 6 12:15:13 localhost sendmail[131160]: g16HFDs9131160: from=, size=31, class=0, nrcpts=1, msgid=<200202061724.g16HOMLs065645@remhost.mydomain.com>, proto=ESMTP, daemon=MTA, relay=remhost.
•7.5 Communicator •7.5 Configuring & Managing MPE/iX Internet Services for further information •http://jazz.external.hp.com/src/s endmail/ •http://www.sendmail.org/ •http://www.sleepycat.
any questions? April 24, 2003 Using Sendmail on MPE - Solution Symposium West Page 69