ispCP - Board - Support
Orderpanel email error - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: Usage (/forum-34.html)
+--- Thread: Orderpanel email error (/thread-3110.html)

Pages: 1 2


Orderpanel email error - skysel - 04-23-2008 06:13 AM

When ordering a domain, email is sent with error.. Log below:

Code:
Apr 22 22:02:28 server postfix/cleanup[16470]: 247C6EAA03: message-id=<20080422200228.247C6EAA03@domain.nl>
Apr 22 22:02:28 server postfix/qmgr[4874]: 247C6EAA03: from=<webmaster@admin.domain.nl>, size=698, nrcpt=1 (queue active)
Apr 22 22:02:28 server postfix/local[16471]: 247C6EAA03: to=<=?UTF-8?B?aW5mb0BIb3N0aW5nLVdvcmtzLm5s?=@domain.nl>, orig_to=<=?UTF-8?B?aW5mb0BIb3N0aW5nLVdvcmtzLm5s?=>, relay=local, delay=1.1, delays=0.64/0.26/0/0.19, dsn=5.1.1, status=bounced (unknown user: "=?utf-8?b?aw5mb0bib3n0aw5nlvdvcmtzlm5s?=")

to=<=?UTF-8?B?aW5mb0BIb3N0aW5nLVdvcmtzLm5s?=@domain.nl>

you see what user it generates (bolded)? I was looking over php pages of orderpanel but could not find anything.. Is this a bug or has anyone had similiar problem?


RE: Orderpanel email error - joximu - 04-23-2008 07:43 AM

have you put some special characters in the email address - or one of the names?


RE: Orderpanel email error - skysel - 04-23-2008 07:57 AM

joximu Wrote:have you put some special characters in the email address - or one of the names?

Nope. Normal email address and name. just tested. still same.


RE: Orderpanel email error - joximu - 04-23-2008 08:02 AM

version of ispcp?


RE: Orderpanel email error - skysel - 04-23-2008 04:29 PM

joximu Wrote:version of ispcp?

Ispcp RC4 (latest release from your website). And i think you got the question wrong Smile When order is placed, information about it should be sent to info@domain.nl. instead it's sent to that weird username@domain.nl.

User entred mail goes through without problem..


RE: Orderpanel email error - joximu - 04-23-2008 09:10 PM

Is info@domain.nl the mail address of the reseller for which the order was placed?

Now I see... the mail to the reseller is not send because of this.

Ok, I could reproduce. I'll try to get a fix

/J


RE: Orderpanel email error - skysel - 04-23-2008 10:26 PM

joximu Wrote:Is info@domain.nl the mail address of the reseller for which the order was placed?

Now I see... the mail to the reseller is not send because of this.

Ok, I could reproduce. I'll try to get a fix

/J

Yeah. info@domain.nl is reseller address.


RE: Orderpanel email error - joximu - 04-24-2008 10:26 AM

You can change something in

gui/include/reseller-functions.php

function send_order_emails...
last line to

$mail_result = mail($from, $subject, $message, $headers);

(remove the recode(...) around the "$from")

/j


RE: Orderpanel email error - skysel - 04-24-2008 04:42 PM

joximu Wrote:You can change something in

gui/include/reseller-functions.php

function send_order_emails...
last line to

$mail_result = mail($from, $subject, $message, $headers);

(remove the recode(...) around the "$from")

/j

Works like a beauty. Thanks.


RE: Orderpanel email error - skysel - 04-24-2008 06:19 PM

skysel Wrote:
joximu Wrote:You can change something in

gui/include/reseller-functions.php

function send_order_emails...
last line to

$mail_result = mail($from, $subject, $message, $headers);

(remove the recode(...) around the "$from")

/j

Works like a beauty. Thanks.

One more question. When mail is received, it contains following weird subject/message text.

Code:
Subject: [Header] - You have a new order - Character set not allowed (n/a)



Dear ,
you have a new order from klala lala &lt;"=?UTF-8?B?a2xhbGEgbGFsYQ==?=" <someone@domain.si>&gt; for domain test.com

Guess more php modifying? Smile