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 ...
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: 1899
- Mon Apr 04, 2011 4:02 pm
- Forum: Using OpenEMM
- Topic: Mail attachment limitations (magic numbers)
- Replies: 18
- Views: 19734
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 ...
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 ...
- Mon Apr 04, 2011 3:59 pm
- Forum: Bugs, bug fixes & releases
- Topic: Normal file attachment size
- Replies: 7
- Views: 15309
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 ...
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: 13635
- Fri Jul 23, 2010 3:14 pm
- Forum: Miscellaneous
- Topic: What operating system do you use for OpenEMM?
- Replies: 29
- Views: 57541
- Tue Apr 13, 2010 7:40 pm
- Forum: Suggestions
- Topic: statistics
- Replies: 4
- Views: 12815
- Mon Apr 12, 2010 5:15 pm
- Forum: Suggestions
- Topic: statistics
- Replies: 4
- Views: 12815
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 ...
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 ...
- Tue Mar 30, 2010 11:23 am
- Forum: Development
- Topic: Throttle mail sending by domain ?!
- Replies: 6
- Views: 13635
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 ...
'Maximum parallel connections for your IP-Address reached' and 'Too many concurrent SMTP connections ...
- Fri Feb 12, 2010 4:15 pm
- Forum: Using OpenEMM
- Topic: Imported Duplicated Email Entries, How to Clean Up the DB?
- Replies: 3
- Views: 5582
- Wed Jan 20, 2010 11:35 am
- Forum: Using OpenEMM
- Topic: Blank screen when importing CSV file
- Replies: 12
- Views: 10358
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 ...
Could you maybe try to import just a few (dummy)lines? If the problem is still there, you could upload the csv, so one ...
- Wed Jan 20, 2010 11:23 am
- Forum: Bugs, bug fixes & releases
- Topic: [solved] problem with the import of csv files
- Replies: 1
- Views: 5217
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 rights ...
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 rights ...
- Tue Jan 19, 2010 5:18 pm
- Forum: Miscellaneous
- Topic: VMware image for 6.x
- Replies: 12
- Views: 19267
- Wed Jan 13, 2010 10:30 am
- Forum: Installation & Upgrades
- Topic: Database Connectivity after Installation
- Replies: 4
- Views: 5023
- Tue Jan 12, 2010 12:44 pm
- Forum: Bugs, bug fixes & releases
- Topic: [solved] problem with the import of csv files
- Replies: 1
- Views: 5217
[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 ...
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 ...
- Tue Jan 12, 2010 12:34 pm
- Forum: Installation & Upgrades
- Topic: Database Connectivity after Installation
- Replies: 4
- Views: 5023
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;
