Home › Forums › OS X Server and Client Discussion › Questions and Answers › Panther email horror
- This topic has 2 replies, 2 voices, and was last updated 21 years, 2 months ago by
Anonymous.
-
AuthorPosts
-
January 27, 2004 at 11:03 am #357269
Anonymous
ParticipantI did a clean install of panther server on my server and manually moved over my sql databases and web files and they work fine. I did not move over the email database, instead I just re made the user accounts and configures the rest. The problem,. it dont work. I had a Jaguar server running fr a year with no problems so I am fairly confident that I set everything correctly. The dns/mx on our names had worked fine for years so I think that is ok. It is just one simple server hosting web files and email for our company. We have a bout a dozen domains pointing to it. I can send mail buy not reveive any. The mail server will not start up half of the time and I get strange errors in my logs. Apple has crummy documentation and their website is even worse. Here are the errors:
Jan 27 05:49:11 server postfix/smtpd[1498]: C5A7C205CD: reject: RCPT from c-24-99-11-86.atl.client2.attbi.com[24.99.11.86]: 554 <[email protected]>: Relay access denied; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<ajc.com>
Jan 27 05:49:12 server postfix/smtpd[1498]: lost connection after RCPT from c-24-99-11-86.atl.client2.attbi.com[24.99.11.86]Jan 27 05:55:37 server postfix/master[716]: warning: process /usr/libexec/postfix/local pid 1596 exit status 1
Jan 27 05:55:37 server postfix/master[716]: warning: /usr/libexec/postfix/local: bad command startup — throttling
Jan 27 05:56:37 server postfix/local[1630]: fatal: main.cf configuration error: mailbox_size_limit is smaller than message_size_limitand
Jan 27 04:20:10 server postfix/master[2719]: terminating on signal 15
Jan 27 04:23:24 server postfix/postfix-script: fatal: the Postfix mail system is not running
Jan 27 04:23:24 server postfix/master[2778]: daemon started — version 2.0.10
Jan 27 04:23:28 server postfix/postfix-script: stopping the Postfix mail system
Jan 27 04:23:28 server postfix/master[2778]: terminating on signal 15
Jan 27 04:23:33 server postfix/postfix-script: fatal: the Postfix mail system is not running
Jan 27 04:23:34 server postfix/master[2794]: daemon started — version 2.0.10Any help would be appreciated,. remember this is a clean install with no hacking with config files. -tim
January 29, 2004 at 6:07 am #357281Anonymous
ParticipantFirst of all,. I really appreciate your help, I am relatively new to this and it is hard to find help on this stuff.
What are localhost aliases, where are they set and what is an example of a properly set one. SSL is not enabled.Here is main:
# THE FOLLOWING DEFAULTS ARE SET BY APPLE
#
# bind to localhost only
#
inet_interfaces = all# turn off relaying for local subnet
#
mynetworks_style = host# mydomain_fallback: optional domain to use if mydomain is not set and
# myhostname is not fully qualified. It is ignored if neither are true.
#
mydomain_fallback = localhost
myhostname = server.axismag.com
mailbox_transport = cyrus
enable_server_options = yes
luser_relay =
maps_rbl_domains = relays.ordb.org
message_size_limit = 0
mydestination = $myhostname,localhost.$mydomain,axismag.com,floridamusicfestival.com,destinationcyberspace.c$
smtpd_use_tls = no
smtpd_enforce_tls = no
smtpd_tls_loglevel = 0
smtpd_sasl_auth_enable = yes
smtpd_use_pw_server = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination,permit
smtpd_pw_server_security_options = plain,login
server_enabled = 1
relayhost =
smtpd_client_restrictions = reject_maps_rbl
always_bcc =
mynetworks = 127.0.0.0/8Here is the master:
# DO NOT SHARE THE POSTFIX QUEUE BETWEEN MULTIPLE POSTFIX INSTANCES.
#
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n – n – – smtpd
#smtps inet n – n – – smtpd
# -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
#submission inet n – n – – smtpd
# -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes
#628 inet n – n – – qmqpd
pickup fifo n – n 60 1 pickup
cleanup unix n – n – 0 cleanup
qmgr fifo n – n 300 1 qmgr
#qmgr fifo n – n 300 1 nqmgr
#tlsmgr fifo – – n 300 1 tlsmgr
rewrite unix – – n – – trivial-rewrite
bounce unix – – n – 0 bounce
defer unix – – n – 0 bounce
flush unix n – n 1000? 0 flush
proxymap unix – – n – – proxymap
smtp unix – – n – – smtp
relay unix – – n – – smtp
# -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq unix n – n – – showq
error unix – – n – – error
local unix – n n – – local
virtual unix – n n – – virtual
lmtp unix – – n – – lmtp
#
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# maildrop. See the Postfix MAILDROP_README file for details.
#
maildrop unix – n n – – pipe
flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
#
# The Cyrus deliver program has changed incompatibly, multiple times.
#
old-cyrus unix – n n – – pipe
flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
# Cyrus 2.1.5 (Amos Gouaux)
cyrus unix – n n – 10 pipe
user=cyrus argv=/usr/bin/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
uucp unix – n n – – pipe
flags=Fqhu user=uucp argv=uux -r -n -z -a$sender – $nexthop!rmail ($recipient)
ifmail unix – n n – – pipe
flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp unix – n n – – pipe
flags=Fq. user=foo argv=/usr/local/sbin/bsmtp -f $sender $nexthop $recipientPlease let me know if there is anything that looks quirky to you. Thanks -tim
-
AuthorPosts
- You must be logged in to reply to this topic.
Comments are closed