• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Email on VPS using CentOS 5.4 only works if sent and received within same domain?!?

Check your /var/log/mail.{log,warn,err} to figure out what's going on. How is mail setup on the box? Are you using an external relay server or a local SMTP server?
 
this is probably caused by the fact that i changed what port emails are used on the master.cf in postfix folder, it reads as follows:

# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
#smtp inet n - n - - smtpd -o content_filter=spamassassin
587 inet n - n - - smtpd

i commented out the first line because i wanted to use port 587 instead because verizon blocks port 25 and i need this email to work in outlook. when i did this email started working but only locally. not sure what to do

if i put the file back to its original, email starts working again like normal, but only in webmail
 
Last edited:
ok so this works:

but i have no idea why?

# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - n - - smtpd -o content_filter=spamassassin
submission inet n - n - - smtpd
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
 
Back
Top