QUOTE
Originally posted by Berlin
Ok for some reason 127.0.0.1/32 works for me. I shouldn't even have to worry about this that's why I got Plesk.
But here's another problem. I can now send emails but only if it's empty or if the message is in a form of an attachment. Here's my maillog:
Mar 12 00:06:53 plesk pop3d: Connection, ip=[207.44.226.30]
Mar 12 00:06:53 plesk pop3d: LOGIN, user=postmaster, ip=[207.44.226.30]
Mar 12 00:06:53 plesk pop3d: LOGOUT, user=postmaster, ip=[207.44.226.30], top=0, retr=0
Mar 12 00:07:00 plesk pop3d: Connection, ip=[207.44.226.30]
Mar 12 00:07:00 plesk pop3d: LOGIN, user=postmaster, ip=[207.44.226.30]
Mar 12 00:07:00 plesk pop3d: LOGOUT, user=postmaster, ip=[207.44.226.30], top=0, retr=0
Nothing leaves the server.
I'm on Plesk 5.0.5 Rpm install also.
ok, the above maillog snipit shows nothing about email sending....but let me take a stab at this anyway...
1) check your php.ini...make sure all 3 of these settings are something acceptable for you (adjust to your own needs)
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =
; Maximum allowed size for uploaded files.
upload_max_filesize = 100K
2) make sure this has been done:
##verify php version
rpm -qa | grep php
##should be at least php-4.1.2-7.3.6
##if not...upgrade php
##change 2 lines in 2 files##
vi /home/httpd/vhosts/webmail/horde/imp/config/servers.php
##change#'protocol' => 'imap',
'protocol' => 'imap/notls',
thats another way to fix it.
vi /home/httpd/vhosts/webmail/horde/config/horde.php
##change#$conf['auth']['driver'] = ''
$conf['auth']['params']['dsn'] = '{localhost:143/notls}INBOX';
##restart psa
/etc/rc.d/init.d/psa restart
##restart apache
/etc/rc.d/init.d/httpd restart
If those don't fix it...post a few more details...and I will see if I can figure out what you have wrong.