Search found 154 matches

by ud
Fri Oct 26, 2012 6:34 am
Forum: Bounce Management
Topic: soft/hard bounce and update.py question
Replies: 4
Views: 15669

Re: soft/hard bounce and update.py question

The rules in bav.rule are used to categorize what the remote system think is a hard bounce. To avoid disabling recipient addresses that are just reported as hard bounce due to misconfiguration we handle these bounce, where we not quite sure as soft bounces. If these are real hard bounces, they will ...
by ud
Thu Oct 04, 2012 6:23 am
Forum: Bounce Management
Topic: Bounces with Smart Relay
Replies: 1
Views: 8362

Re: Bounces with Smart Relay

It depends on the smart relay. If it acts as a "write through" relay it can pass instant bounces directly back to the sending instance (which is the server running OpenEMM.) Otherwise all instant bounces are sent back to the sending instance via mail (and is handled by the delayed bounce m...
by ud
Tue Jul 03, 2012 1:12 pm
Forum: Using OpenEMM
Topic: xmlback reports syntax error
Replies: 2
Views: 3975

Re: xmlback reports syntax error

There is no known issue running (the 32bit) version of xmlback in a 64bit environment. This looks more like an error has occurred during generation of the XML file. So you should first test the XML file for integrity (e.g. using xmllint) and scan the logfile of the webcontainer for further informati...
by ud
Fri Jun 08, 2012 6:00 am
Forum: Miscellaneous
Topic: What's maillog file used for?
Replies: 4
Views: 13302

Re: What's maillog file used for?

The sendmail logfile is read to collect bounce information which are occurring during sending.

To avoid an overrun of the disk space, ask your system administrator to install a proper logfile handling system (e.g. lograotate.)

-- ud
by ud
Fri Jun 01, 2012 6:20 am
Forum: Development
Topic: C code in OpenEmm
Replies: 23
Views: 24105

Re: C code in OpenEmm

Hello Ruth, thank you for your question, I'm glad to see that someone is still interested in C while the world is only talking about Java these days. 1.) The C code is primary written to create the final mails. While the Java code retrieves the informations from the database and collect them in a XM...
by ud
Thu Dec 08, 2011 9:38 am
Forum: Bounce Management
Topic: Some troubles of bounce management
Replies: 2
Views: 6120

Re: Some troubles of bounce management

Your configuration seems to work as designed. Depending on the received message the rules (as defined in bav.rule) do not match so the mail is forwarded. The rules are very limited to avoid losing mails and, on the other hand, accepts also mails, which are not recognized as bounce message. Be free t...
by ud
Wed Apr 22, 2009 9:09 am
Forum: Installation & Upgrades
Topic: MySQL db in another server , possible ?
Replies: 3
Views: 5613

You're right, all python modules use the file agn.py to access the database, so to connect to a remote server, you have to change this line.

-- ud
by ud
Tue Mar 03, 2009 11:50 am
Forum: Bounce Management
Topic: bounce stat
Replies: 8
Views: 18345

That looks okay .... One possible thing I can think of: if sendmail should use a smart relay, it may ignore the route given in /etc/mail/mailertable and really send everything to the smart relay. But the entry from the logfile in your first post states, that the mail is routed to /home/openemm/conf/...
by ud
Tue Mar 03, 2009 11:43 am
Forum: Bounce Management
Topic: bounce stat
Replies: 8
Views: 18345

Thats strange (btw, its filter, not filters.) Could you please look through the logfiles under /home/optnemm/var/log starting with a timestamp for error or warning messages? And can you do a:

Code: Select all

$ ls -l /home/openemm/bin/scripts
to chechk for missing links.

-- ud
by ud
Mon Mar 02, 2009 4:41 pm
Forum: Bounce Management
Topic: bounce stat
Replies: 8
Views: 18345

Here you mix up two things. The file /home/openemm/conf/smart-relay is only used in a non sendmail enviroment, where sending is managed by the internal MTA. So this file has no effect in your case. On the other hand, it looks like you did everything right. If you do not send mail using a smart relay...
by ud
Fri Jan 30, 2009 11:39 am
Forum: Using OpenEMM
Topic: Smart-Relay to external Exchange 2007
Replies: 8
Views: 10612

It may work, but it is not intended (and supported) to work. If you use semu, then you should redirect port 25 to 8025, as semu runs under user permission and is not allowed to bind to a port lower than 1024.

If you have already sendmail running, why do you not use it for OpenEMM?

-- ud
by ud
Fri Jan 30, 2009 10:54 am
Forum: Using OpenEMM
Topic: Smart-Relay to external Exchange 2007
Replies: 8
Views: 10612

The retry comment in the logfile is here missleading. If you have entered a hostname instaed of an IP address as the smart-relay, semu resolves all assigned IP addresses for this name and (re)tries to send the mail over the remaining IPs, if the previous delivery failed with a non permanent error. O...
by ud
Fri Jan 30, 2009 10:06 am
Forum: Using OpenEMM
Topic: Smart-Relay to external Exchange 2007
Replies: 8
Views: 10612

The authentication method cannot be specified, the module (smtplib.py) looks for available authentication methods provided by the server and uses one, that it supports. If there is no match, there is no easy way to fix it.

Both of you examples to specify the authentication token are correct.

-- ud
by ud
Fri Jan 30, 2009 9:24 am
Forum: Using OpenEMM
Topic: Smart-Relay to external Exchange 2007
Replies: 8
Views: 10612

The used module to send mails via SMTP supports (according to Python2.5) these authentication methods: CRAM-MD5, PLAIN, LOGIN. If none of these can be found at the server, your error message will be reported.

-- ud
by ud
Fri Jan 23, 2009 11:42 am
Forum: Installation & Upgrades
Topic: Running on x64 machine
Replies: 6
Views: 12184

Simply change to ../lib, run make there, go back to ../tools and try make again here. Then the previous compilied libagn.a in ../lib should be found.

-- ud