Mailing only generate for test or admin users
Moderator: moderator
Mailing only generate for test or admin users
When I try to send a mailing, OpenEMM put it in :
var/spool/META
but ther's nothing in the QUEUE :
var/spool/META
When I send mailing to test user, I see something like :
Sep 14 12:14:00 h91 xmlback[31301]: mail creation: 0;1;1;7;17;T;1;0;0;1;546
in the maillog ... but when I try to "really" send the mailing, nothing happen ...
OpenEMM 5.0.1
Linux Fedora core 4
Thanks for your help ...
var/spool/META
but ther's nothing in the QUEUE :
var/spool/META
When I send mailing to test user, I see something like :
Sep 14 12:14:00 h91 xmlback[31301]: mail creation: 0;1;1;7;17;T;1;0;0;1;546
in the maillog ... but when I try to "really" send the mailing, nothing happen ...
OpenEMM 5.0.1
Linux Fedora core 4
Thanks for your help ...
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
various tipps
next to the .xml.gz file there should be a .stamp file as well as a .final file. If these files are missing the generation was probably interrupted. Please check ~/var/log&<datum>-<system>-mailgun.log.
After generation, the process pickdist.py unpacks the .xml.gz packages. If this process does not work or there are any other problems (like incomplete permissions) you should check out ~/var/log/...-pickdist.log.
After generation, the process pickdist.py unpacks the .xml.gz packages. If this process does not work or there are any other problems (like incomplete permissions) you should check out ~/var/log/...-pickdist.log.
OpenEMM Maintainer
ok, in ...pickdist.log I got this error:
Is this a well known error or a matter of a false config?
Code: Select all
[30.11.2006 16:01:48] 5115 INFO/main: Starting up
[30.11.2006 16:01:49] 5115 FATAL/except: CAUGHT EXCEPTION:
Traceback (most recent call last):
File "/home/openemm/bin/scripts/pickdist.py", line 180, in ?
if pd.scanForData () == 0:
File "/home/openemm/bin/scripts/pickdist.py", line 109, in scanForData
db = agn.DBase ()
AttributeError: 'module' object has no attribute 'DBase'
Is this a well known error or a matter of a false config?
Looks like a missing Python mysql module. You can test this by starting python in interactive mode and type
which should not print anything except the input prompt on success. Otherwise install the proper package.
-- ud
Code: Select all
import MySQLdb
-- ud