Search found 30 matches

by mmenke
Mon Aug 22, 2011 2:11 pm
Forum: Using OpenEMM
Topic: Using the service emails / confirmation upon subscription
Replies: 0
Views: 2565

Using the service emails / confirmation upon subscription

One of our clients wants to be informed via email whenever a new recipient has confirmed his subscription (last DOI step). I tried to do this using the feature service emails, which can send out mails from within the action. This works great, but our client also wants to see the recipient's address ...
by mmenke
Mon Apr 04, 2011 4:02 pm
Forum: Using OpenEMM
Topic: Mail attachment limitations (magic numbers)
Replies: 18
Views: 37411

Re:

Hi! Is there any news regarding this topic? The limit of 1 MB (or even less for pdfs is really annoying). We also get the same error message with V 6.1: java.lang.IllegalStateException: forward() not allowed after buffer has committed. at com.caucho.server.webapp.RequestDispatcherImpl.forward(Reque...
by mmenke
Mon Apr 04, 2011 3:59 pm
Forum: Bugs, bug fixes & releases
Topic: Normal file attachment size
Replies: 7
Views: 17897

Re: Normal file attachment size

Since OpenEMM 6.2 you can change the maximum size for attachments in the emm.properties file. You find it here: /home/openemm/webapps/core/WEB-INF/classes/emm.properties Please note, that you should also check your MySQL my.cnf (/etc/my.cnf) for the max_allowed_packet setting. In my case, OpenEMM / ...
by mmenke
Mon Dec 13, 2010 11:06 am
Forum: Development
Topic: Throttle mail sending by domain ?!
Replies: 6
Views: 15742

Just released OpenEMM 6.2 allows you to define the delivery speed for every mailing separately. If you have problems with a certain provider you could define a separate target group for email addresses of this provider and send them a copy of your mailing for which you define the delivery speed wit...
by mmenke
Fri Jul 23, 2010 3:14 pm
Forum: Miscellaneous
Topic: What operating system do you use for OpenEMM?
Replies: 30
Views: 126808

We use CentOS 5.5 for our OpenEMM-servers (the servers are virtualized with Windows Hyper-V Server 2008 R2)
by mmenke
Tue Apr 13, 2010 7:40 pm
Forum: Suggestions
Topic: statistics
Replies: 4
Views: 17007

Your newsletter recipients unsubscribe by clicking a link in the newsletter. You can choose the target of the link yourself (meaning you don't have to include any id), because OpenEMM handles the id of the recipient for you. You could, for instance, link to a website that says "you have been un...
by mmenke
Mon Apr 12, 2010 5:15 pm
Forum: Suggestions
Topic: statistics
Replies: 4
Views: 17007

Re: statistics

im new openemm...i think i have problem in my configuration openemm (redirection domain)..even i send an e mail , i enable Measure open rate .. but i cant show my statistic of opened mails...and the mail sent contain at the bottom an url ( <smtp.planet.tn:587/g.html?uid=1.1j.e.0.4djkg92dd6> ) ps: s...
by mmenke
Tue Mar 30, 2010 11:23 am
Forum: Development
Topic: Throttle mail sending by domain ?!
Replies: 6
Views: 15742

If we could get throttling per domain (or throttling somehow), that would be really great :) .. I just sent out a mailing and got a lot of errors from some bigger german mail exchangers in the log: 'Maximum parallel connections for your IP-Address reached' and 'Too many concurrent SMTP connections f...
by mmenke
Fri Feb 12, 2010 4:15 pm
Forum: Using OpenEMM
Topic: Imported Duplicated Email Entries, How to Clean Up the DB?
Replies: 3
Views: 6752

Even though I think you already solved your problem by now, maybe the following helps someone else. A possible solution is to delete all entries from the bad import(s) at first and to start all over again. Could be done by a simple MySQL query like this: delete from customer_1_tbl where creation_dat...
by mmenke
Wed Jan 20, 2010 11:35 am
Forum: Using OpenEMM
Topic: Blank screen when importing CSV file
Replies: 12
Views: 13122

Have you tried to import a smaller portion of the csv file? I mean, you could try to split the data into pieces and see if maybe the problem is just some data in one single line.. Could you maybe try to import just a few (dummy)lines? If the problem is still there, you could upload the csv, so one o...
by mmenke
Wed Jan 20, 2010 11:23 am
Forum: Bugs, bug fixes & releases
Topic: [solved] problem with the import of csv files
Replies: 1
Views: 6204

update

Doing tail -f /home/openemm/webapps/core/log/openemm_stdout.log I found out that there was a problem when OpenEMM wanted to create a temporary table for the import with the database user "agnitas". I just fixed the user's rights and everything works just fine now :) I don't know why the ri...
by mmenke
Tue Jan 19, 2010 5:18 pm
Forum: Miscellaneous
Topic: VMware image for 6.x
Replies: 12
Views: 22890

Thanks :)
by mmenke
Wed Jan 13, 2010 10:30 am
Forum: Installation & Upgrades
Topic: Database Connectivity after Installation
Replies: 4
Views: 6536

Is "openemm_cms" the only OpenEMM database you have? As of OpenEMM 6.x, this is an additional database to the "openemm" db. You need the openemm db in order for OpenEMM to work! I think if you import that one again, your problems will be solved. You find the needed sql-file here:...
by mmenke
Tue Jan 12, 2010 12:44 pm
Forum: Bugs, bug fixes & releases
Topic: [solved] problem with the import of csv files
Replies: 1
Views: 6204

[solved] problem with the import of csv files

Hi, I have a problem with importing csv-files. Version in use is 6.0.1 The import works flawlessly up to the point where OpenEMM shows the preview of the data that is going to be imported. This step works as well (that data shown is looking perfect) but when I click on forward/next (I don't know how...
by mmenke
Tue Jan 12, 2010 12:34 pm
Forum: Installation & Upgrades
Topic: Database Connectivity after Installation
Replies: 4
Views: 6536

Seems like MySQL does not have the rights to access the db. try this:

Code: Select all

mysql -u root -p
GRANT DELETE, INSERT, UPDATE, LOCK TABLES, SELECT, ALTER, INDEX, CREATE TEMPORARY TABLES, DROP, CREATE ON openemm.* TO 'agnitas'@'localhost' IDENTIFIED BY 'openemm'; FLUSH PRIVILEGES;
Does this help?