Search found 30 matches
- Mon Aug 22, 2011 2:11 pm
- Forum: Using OpenEMM
- Topic: Using the service emails / confirmation upon subscription
- Replies: 0
- Views: 2916
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 ...
- Mon Apr 04, 2011 4:02 pm
- Forum: Using OpenEMM
- Topic: Mail attachment limitations (magic numbers)
- Replies: 18
- Views: 41744
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...
- Mon Apr 04, 2011 3:59 pm
- Forum: Bugs, bug fixes & releases
- Topic: Normal file attachment size
- Replies: 7
- Views: 19556
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 / ...
- Mon Dec 13, 2010 11:06 am
- Forum: Development
- Topic: Throttle mail sending by domain ?!
- Replies: 6
- Views: 17119
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...
- Fri Jul 23, 2010 3:14 pm
- Forum: Miscellaneous
- Topic: What operating system do you use for OpenEMM?
- Replies: 30
- Views: 150003
- Tue Apr 13, 2010 7:40 pm
- Forum: Suggestions
- Topic: statistics
- Replies: 4
- Views: 24437
- Mon Apr 12, 2010 5:15 pm
- Forum: Suggestions
- Topic: statistics
- Replies: 4
- Views: 24437
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...
- Tue Mar 30, 2010 11:23 am
- Forum: Development
- Topic: Throttle mail sending by domain ?!
- Replies: 6
- Views: 17119
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...
- Fri Feb 12, 2010 4:15 pm
- Forum: Using OpenEMM
- Topic: Imported Duplicated Email Entries, How to Clean Up the DB?
- Replies: 3
- Views: 7730
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...
- Wed Jan 20, 2010 11:35 am
- Forum: Using OpenEMM
- Topic: Blank screen when importing CSV file
- Replies: 12
- Views: 15060
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...
- Wed Jan 20, 2010 11:23 am
- Forum: Bugs, bug fixes & releases
- Topic: [solved] problem with the import of csv files
- Replies: 1
- Views: 6680
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...
- Tue Jan 19, 2010 5:18 pm
- Forum: Miscellaneous
- Topic: VMware image for 6.x
- Replies: 12
- Views: 25231
- Wed Jan 13, 2010 10:30 am
- Forum: Installation & Upgrades
- Topic: Database Connectivity after Installation
- Replies: 4
- Views: 7287
- Tue Jan 12, 2010 12:44 pm
- Forum: Bugs, bug fixes & releases
- Topic: [solved] problem with the import of csv files
- Replies: 1
- Views: 6680
[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...
- Tue Jan 12, 2010 12:34 pm
- Forum: Installation & Upgrades
- Topic: Database Connectivity after Installation
- Replies: 4
- Views: 7287
Seems like MySQL does not have the rights to access the db. try this:
Does this help?
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;