Search found 154 matches

by ud
Mon Dec 24, 2007 11:33 am
Forum: Bugs, bug fixes & releases
Topic: syntax error in openemm.sql
Replies: 8
Views: 14247

The openemm.sql script has some identification bytes at the beginning which may cause mysql to fail. To remove these bytes, you can use this command:

Code: Select all

dd if=openemm.sql of=openemm-correct.sql bs=1 skip=3
and use the file openemm-correct.sql instead of openemm.sql.

-- ud
by ud
Wed Dec 19, 2007 8:25 am
Forum: Using OpenEMM
Topic: Problem with OpenEMM 5.3.2?
Replies: 21
Views: 23550

This looks like the original xmlback had been corrupted, even the checksum had been ok. Anyway, thanks for your effort to find the error!

-- ud
by ud
Tue Dec 18, 2007 8:57 am
Forum: Using OpenEMM
Topic: Problem with OpenEMM 5.3.2?
Replies: 21
Views: 23550

Looks like your binary is not corrupt (btw, on normal mailings you should find similar error messages in var/log/*-pickdist.log.) So some more tests are possible: 1.) You can enable the creation of core files using ulimit -c unlimited from bash as user openemm, then restart within this shell openemm...
by ud
Mon Dec 17, 2007 2:59 pm
Forum: Using OpenEMM
Topic: Problem with sending Emails
Replies: 2
Views: 4238

You should place post.strato.de for the relay if this is the outgoing SMTP server of your provider, e.g. username:password@post.strato.de.

-- ud
by ud
Mon Dec 17, 2007 2:56 pm
Forum: Installation & Upgrades
Topic: Maybe a sendmail config issue - Retrying every 1 minute
Replies: 7
Views: 13587

You can change the interval of the sendmail queue scan (which is inital one minute) by changing the file bin/mailer.sh . Around line 47 you can change the line $sm -q1m -NNEVER -OQueueDirectory=$BASE/var/spool/QUEUE -OPidFile=$BASE/var/run/sendmail-openemm-queue.pid with $sm -q60m -NNEVER -OQueueDir...
by ud
Mon Dec 17, 2007 2:51 pm
Forum: Using OpenEMM
Topic: Problem with OpenEMM 5.3.2?
Replies: 21
Views: 23550

This error indicates a segmentation fault. Can you start xmlback by hand without any argument? It should return to the prompt, no output or error should occur. Can you tell us some more details about your system, e.g. distribution, version? Can you post the size and checkum (using the command sum) o...
by ud
Tue Dec 11, 2007 8:30 am
Forum: Installation & Upgrades
Topic: OpenEMM 5.3.1c
Replies: 3
Views: 5803

Strange - as sendmail is started with root permissions it should have no problems to write to this directory. Can you check, if the program bin/smctrl is owned by root and the setuid bit is set, e.g.: $ ls -l bin/smctrl -rwsr-sr-x 1 root root 9812 Nov 14 08:37 bin/smctrl And, can you check if every ...
by ud
Thu Dec 06, 2007 11:13 am
Forum: Bounce Management
Topic: OpenEMM & Greylisting
Replies: 2
Views: 9567

Your understanding of the bounce handling is correct. As every mailserver seems to handle graylisting in its own way, there is no simple solution. If you have a look in the update.py script, there is already a simple catch to ignore graylisting soft bounces, but it does not catch all cases. This par...
by ud
Thu Dec 06, 2007 11:04 am
Forum: Installation & Upgrades
Topic: OpenEMM 5.3.1c
Replies: 3
Views: 5803

Is there any type of secure linux running, e.g. SELinux or AppArmour? Either you disable them or change the sendmail policy for them

-- ud
by ud
Thu Dec 06, 2007 11:01 am
Forum: Installation & Upgrades
Topic: Exception in thread SMTP Server
Replies: 7
Views: 13991

I think he changed bin\scripts\semu.py directly and changed the port the server is listening from 25 to 2025. This removes the error, but this does not really work as every remote systems tries to connect to port 25 to deliver your mail. So either you must run the application as administrator or you...
by ud
Wed Nov 28, 2007 9:47 am
Forum: Bounce Management
Topic: Soft-/Hardbounce
Replies: 13
Views: 27589

The bav.rule file has several section starting wirh [...] followed by a regular expression, one per line to match for this section. For hardbounces the section [hard] is the one to add your rules. The line in the extbounce file shows the part of the mail that matches a regular expression from bav.ru...
by ud
Wed Nov 28, 2007 8:38 am
Forum: Bounce Management
Topic: Soft-/Hardbounce
Replies: 13
Views: 27589

As every mail server seems to report errors in its very own way, you can change the "bav.rule" file to catch these cases. Be aware to either send us the changes to add them to the next release or backup your rule files before updates and restore your version then.

-- ud
by ud
Mon Nov 26, 2007 9:05 am
Forum: Using OpenEMM
Topic: OpenEMM send 5000 mail each times!?
Replies: 3
Views: 5186

You can change the number of maximum inserted mails in the sendmail queue by chainging bin/scripts/pickdist.py by changing the method queueIsFree. Be warned that a large queue may slowdown the operation of sendmail.

-- ud
by ud
Tue Nov 13, 2007 12:01 pm
Forum: Installation & Upgrades
Topic: Excess arguments to built-in 'define' ignored
Replies: 2
Views: 5689

The initial apostrophes must be a backtick (`), otherwise the M4 preprocessor will fail to interpret your input.

-- ud
by ud
Thu Nov 08, 2007 9:40 am
Forum: Installation & Upgrades
Topic: Change SMTP Port on Windows Installation
Replies: 1
Views: 4646

No, because remote servers connect to one defined port (SMTP, 25) which cannot be changed (as there is no way to tell the remote system that you are using a different port.)

-- ud