Exim

Can you show me your exim configuration file? and/or show me loginformation from mainlog then?

What grep -R exim /var/log/* result in? Do you see any errors in those logfiles that popup?
 
Ok thanks it worked, thnx all i will now post how to fix this.

first of, if exim doesnt work anymore try removing it and running the DirectAdmin setup again.
( DO backup everything before you do! )

Then, like me if you cant send mail or recieve try checking your log.
If the log says the mail has been sent succefully but you cant get anything back in your inbox and you are using dovecot like me you could use this

Remove every line starting with a -
And place the line with a + behind it.

Code:
--- /etc/exim.conf.backup 2005-12-14 23:42:19.000000000 -0800
+++ /etc/exim.conf 2005-12-14 23:44:38.000000000 -0800
@@ -679,7 +679,7 @@
condition = "${if exists{/etc/virtual/${domain}/filter}{yes}{no}}"
user = "mail"
file = /etc/virtual/${domain}/filter
- file_transport = address_file
+ directory_transport = address_file
pipe_transport = virtual_address_pipe
retry_use_local_part
no_verify
@@ -819,7 +819,10 @@
driver = appendfile
delivery_date_add
envelope_to_add
- file = /var/mail/$local_part
+ directory = /home/$local_part/Maildir/
+ directory_mode = 770
+ create_directory = true
+ maildir_format
group = mail
mode = 0660
return_path_add
@@ -831,9 +834,10 @@
driver = appendfile
create_directory
delivery_date_add
- directory_mode = 700
+ directory_mode = 770
envelope_to_add
- file = /var/spool/virtual/${domain}/${local_part}
+ directory = /home/${lookup{$domain}lsearch*{/etc/virtual/domainowners}{$value}}/imap/${domain}/${local_part}/Maildir
+ maildir_format
group = mail
mode = 660
return_path_add
 
Unless you actually own mydomain.com then you're not giving us complete information.

Send yourself an email using your server and squirrelmail. Let us see all the lines in /var/log/exim/mainlog that refer to this email.

Then send yourself an email using some other server (hotmail, for example) and let us see all the lines in /var/log/exim/mainlog that refer to this email.

Use real domain names. Don't change anything.

Then perhaps we can help you.

The rejectlog may be found at /var/log/exim/rejectlog.

Jeff
 
Back
Top