I'm working on a server with some very old mail configurations that have recently started getting some difficulties. I decided to just redo the configuration from scratch since there's a lot of useless and obsolete code in this setup, but there seems to be a lot of missing config info for sendmail/postfix that I'd need.
All the relevant information I could find was in /etc/postfix/main.cf:
myhostname = foo.bar.com
myorigin = /etc/mailname
mydestination = web1, localhost.localdomain, localhost
and /etc/mailname:
noreply@bar.com
There's no relayhost or passwords defined anywhere I can find. The server is set up to use PHP's mail(), which in turn uses /usr/sbin/sendmail. There's nothing in /var/mail, /var/spool/mail, /etc/mail, /etc/postfix/sasl, or anywhere else I can find.
So my question is: Is it possible that this configuration doesn't store the relayhost or password data for these accounts anywhere? If no, is there somewhere I've missed checking?