Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
5 registered (ayawkho, SteveS, Tainted, Mike L, KuKuKaChu), 29 Guests and 14 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 03/21/08
Posts: 224
Top Posters (30 Days)
Ruben 61
SD 52
Gizmo 48
gliderdad 33
Dunny 21
driv 18
dbremer 16
Stan 13
Mark S 13
Steve C 10
Latest Photos
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Gizzo Marx
Page 3 of 4 < 1 2 3 4 >
Topic Options
#174597 - 01/19/07 09:36 PM Re: Verification Email Formatting? [Re: Jim]
ntdoc Offline
Registered: 11/09/06
Posts: 3382
My SMTP does not appear to have any obvious mailing issues. I've enabled a CC to another account whenever there is a bad e-mail address now instead of just a log.


 Quote:
Received: from xxxxx ([127.0.0.1]) by xxxxxx with Microsoft SMTPSVC(6.0.3790.1830);
Thu, 18 Jan 2007 09:34:59 +0100
Subject: Thank you for registering at KiXtart.org - official site!
To: xxxxx@xxx.com
Date: Thu, 18 Jan 2007 09:34:59 +0100
Return-Path: no-reply@kixtart.org
From: "KiXtart.org - official site" <no-reply@kixtart.org>
Message-ID: <bf139ee0a1df09c1ade984f4059b82e0@www.kixtart.org>
X-Priority: 3
X-Mailer: PHPMailer [version 1.73]
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="iso-8859-1"
X-OriginalArrivalTime: 18 Jan 2007 08:34:59.0021 (UTC) FILETIME=[89F62FD0:01C73ADB]



Edited by ntdoc (01/19/07 09:37 PM)
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#174605 - 01/19/07 10:42 PM Re: Verification Email Formatting? [Re: ntdoc]
Jim Offline
newbie
Registered: 01/19/04
Posts: 39
Loc: Chicago
Yes, there is no spam filtering set on the domain of the address I used.

If you don't mind, check your control panel registration queue [ MusicPlayer Forums » Control Panel » Member Management]. If you have a jquinn in there pending email verification, try the Re-send Verification option to send another email, then you can watch it's progress in your SMTP Queue.

Your help is much appreciated.

Thanks
_________________________
http://forums.musicplayer.com
Top
#174606 - 01/19/07 10:49 PM Re: Verification Email Formatting? [Re: Jim]
Jim Offline
newbie
Registered: 01/19/04
Posts: 39
Loc: Chicago
ntdoc,

I replied to your previous message and then realized yuo posted another one.

My email headers being generated look different. I am going to look into it, maybe the server admins setup a different configuration.

It still doesn't explain why my registration didn't go through on your site.

This issue is driving me crazy.
_________________________
http://forums.musicplayer.com
Top
#174607 - 01/19/07 11:48 PM Re: Verification Email Formatting? [Re: Jim]
ntdoc Offline
Registered: 11/09/06
Posts: 3382
I'll try and take a further look into it this weekend if I get time.
Top
#174734 - 01/21/07 03:03 AM Re: Verification Email Formatting? [Re: Jim]
Jim Offline
newbie
Registered: 01/19/04
Posts: 39
Loc: Chicago
Long story short, I figured out how to make this work for my configuration. If anyone is interested in how I figured it out, I will elaborate.

The solution:

Call phpmailer IsSMTP() in ubbthreads.inc.php MAILER CLASS extender.

// ########################################################################
// MAILER CLASS
// Define class for sending email
// ########################################################################
class mailer extends PHPMailer {


var $to_email;
var $From = null;

// ######################################################################
// headers
// ######################################################################
function send_mail($htmlmail="",$from="",$to="",$subject="",$body="",$bcc=array()) {

global $mailer,$config,$ubbt_lang;
$this->IsSMTP(); // telling the class to use SMTP
if ($from) {
$this->From = $from;
$this->FromName = $from;
} else {
$this->From = $config['SITE_EMAIL'];
$this->FromName = $config['COMMUNITY_TITLE'];
}

I realize that this might be an issue with the installation and configuration. I did not install the software and am not sure what options where selected during the install process. However, I am still concerned that my registration in ntdoc's forum had the same problem.

This problably isn't a big issue for most Threads admins, but I would like to share my findings with anyone who is interested.

Again, to my knowledge, this only affects 7.0.2 installed on Windows 2003 using IIS6 when forum generated emails are sent to addresses hosted on qmail servers.
_________________________
http://forums.musicplayer.com
Top
#174736 - 01/21/07 03:12 AM Re: Verification Email Formatting? [Re: Jim]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ

Glad you sorted it out, and hope it helps others w/ the same problem!
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
#174737 - 01/21/07 03:24 AM Re: Verification Email Formatting? [Re: Jim]
ntdoc Offline
Registered: 11/09/06
Posts: 3382
I'll try to check on my setup tomorrow and see how it goes.

Don't have time tonight as have to be getting to bed soon - wife wants to go some place at like 8 in the morning \:\(
Top
#174740 - 01/21/07 03:27 AM Re: Verification Email Formatting? [Re: ntdoc]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ
 Originally Posted By: ntdoc
wife wants to go some place at like 8 in the morning \:\(


Eww.

Toss her the keys and roll over. Although that may not work well in the long run. \:D
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
#174741 - 01/21/07 03:28 AM Re: Verification Email Formatting? [Re: jgeoff]
ntdoc Offline
Registered: 11/09/06
Posts: 3382
Can you say DOG HOUSE

Thanks but no thanks - I don't care for them cold shoulder times.
Top
#174742 - 01/21/07 03:30 AM Re: Verification Email Formatting? [Re: ntdoc]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ

Eh. Leaves more time for football. \:D
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
Page 3 of 4 < 1 2 3 4 >



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Edit Post
by Bert
Today at 01:19 PM
A positive note
by SteveS
Yesterday at 09:36 PM
How to locate links to particular site if they are only used in images?
by Conrad
02/10/12 09:41 PM
Pictures not displaying
by Marker23
02/09/12 10:04 PM
Issue with logging out constantly
by Flanuva
02/09/12 07:05 PM
Forum Stats
10214 Members
36 Forums
33667 Topics
180917 Posts

Max Online: 978 @ 06/24/07 11:19 PM
Random Image