Hi Navin,
I don't know about your sendmail configuration, but sendmail definitly delivered both of your mails. I can tell, because sendmail wrote "stat=Sent" in both loglines.
The real difference is: the mail for the domain abc.com got delivered to the mailhost 127.0.0.1 which is the host sendmail ...
Search found 4 matches
- Wed Dec 20, 2006 10:25 pm
- Forum: Installation & Upgrades
- Topic: Facing a strange problem while sending emails..
- Replies: 4
- Views: 6664
- Wed Dec 20, 2006 10:13 pm
- Forum: Bugs, bug fixes & releases
- Topic: SOLVED: problems with ##AGNUID##
- Replies: 23
- Views: 44867
- Wed Dec 20, 2006 10:01 pm
- Forum: Using OpenEMM
- Topic: Charset of $customerData fields
- Replies: 1
- Views: 4140
Charset of $customerData fields
I had to change line 83 in UserFormExecuteAction.java to get the correct charset encoding. Old line:
String responseMimetype=new String("text/html");
My new line is:
String responseMimetype=new String("text/html; charset=utf-8");
I'm not sure if this is a fix or a workaround. Using the new line ...
String responseMimetype=new String("text/html");
My new line is:
String responseMimetype=new String("text/html; charset=utf-8");
I'm not sure if this is a fix or a workaround. Using the new line ...
- Tue Dec 19, 2006 4:56 pm
- Forum: Using OpenEMM
- Topic: Charset of $customerData fields
- Replies: 1
- Views: 4140
Charset of $customerData fields
I'm having problems using umlauts in a form field. If I am storing data containing an umlaut using the following form:
<form action="form.do" method="post">
<input type="hidden" name="agnCI" value="1">
<input type="hidden" name="agnFN" value="Save">
<input type="hidden" name="agnUID" value ...
<form action="form.do" method="post">
<input type="hidden" name="agnCI" value="1">
<input type="hidden" name="agnFN" value="Save">
<input type="hidden" name="agnUID" value ...
