Results 1 through
5
while searching for:
"postfix"
Postfix mailhub configuration
Here's an example Postfix main.cf that's usefull for a simple mailhub configuration:
# Add this to the end of /etc/postfix/main.cf
myhostname = smtp.foo.com
mydomain = foo.com
mynetworks = 127.0.0.0/8, 10.0.0.0/24
alias_maps = hash:/etc/mail/a
[...]
http://rockfloat.com/board/post/?id=591
April 15, 2008 @04:50
(Replies: 0)
(Rank: 0.061)
postfix
What do you do to apply changes made to Postfix config files?
If it's a file like /etc/postfix/main.cf:
root# postfix reload
If it's files like /etc/postfix/virtual or /etc/postfix/transport:
root# postmap /etc/postfix/virtual
If it's a file like /etc/mail/aliases you do:
root# newaliases
Jo
[...]
http://rockfloat.com/board/post/?id=505
December 06, 2005 @04:34
(Replies: 0)
(Rank: 0.061)
postfix
How do you add new users to Postfix?
For my simple setup using imap and maildir it's:
root# useradd -m -s /bin/false foouser
root# maildirmake /home/foouser/.maildir
root# chown -R foouser:users /home/foouser/.maildir
root# emacs /etc/postfix/virtual
root# postmap /etc/postfix/vi
[...]
http://rockfloat.com/board/post/?id=506
February 27, 2006 @20:57
(Replies: 0)
(Rank: 0.061)
postfix
when sending mail using php from gentoo linux i'm getting: apache@_HOSTNAME_ not found
this is because the ssmtp server on gentoo does a reverse lookup of the domain... what you need to do is edit /etc/ssmtp/ssmtp.conf and edit to look something like:
mailhub=your.mail.host.com
hostname=some.valid.dns.domain.name
gentoo uses a
[...]
http://rockfloat.com/board/post/?id=92
December 06, 2003 @03:05
(Replies: 0)
(Rank: 0.000)
whats an mta and lda?
mta = mail transport agent = sendmail/postfix
lda = local delivery agent = procmail/mail.local
afaik
John M.
http://rockfloat.com/board/post/?id=124
April 23, 2003 @18:37
(Replies: 0)
(Rank: 0.000)