Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Closed)
 (v3.4.03) : JMail 4 Support
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

arup
New Member

United Kingdom
63 Posts

Posted - 05 March 2003 :  06:49:08  Show Profile
I have installed JMail 4.3.1 on my web server, but the drop down list in Email Server Config only shows JMail.

This may well be OK, but how do I know that case jmail4 is being used in inc_mail.asp?

From what I can tell from admin_config_email.asp strMailMode can never be set to jmail4. Is this correct? and if so, what do I need to edit to get it working.

Thanks,

Deleted
deleted

4116 Posts

Posted - 05 March 2003 :  07:39:33  Show Profile
This is correct.

Make the following changes to admin_config_email.asp as a quick fix:

	Dim theComponent(19)
	Dim theComponentName(19)
	Dim theComponentValue(19)

	'## the components
...
	theComponent(19) = "Jmail.Message"

	'## the name of the components
...
	theComponentName(19) = "JMail4"

	'## the value of the components
...
	theComponentValue(19) = "jmail4"


Stop the WAR!
Go to Top of Page

Deleted
deleted

4116 Posts

Posted - 05 March 2003 :  07:44:12  Show Profile
Same changes may be needed for testemailcomponent.asp if you like...

Stop the WAR!
Go to Top of Page

arup
New Member

United Kingdom
63 Posts

Posted - 05 March 2003 :  08:04:23  Show Profile
thanks Bozden
Go to Top of Page

arup
New Member

United Kingdom
63 Posts

Posted - 05 March 2003 :  08:09:26  Show Profile
The reason I have asked is that I wanted to use the queueing function of JMail 4, but it seems to be telling me that the .nq method is not part of the free JMail component, however the docs suggest otherwise.

Does anyone know if the .nq and .MSPickupDirectory methods should work with JMail Free?

Has anyone used them succesfully??

Thanks,

Edited by - arup on 05 March 2003 08:18:12
Go to Top of Page

Deleted
deleted

4116 Posts

Posted - 05 March 2003 :  08:12:39  Show Profile
After you test it, can you please verify if it works or not?

Stop the WAR!
Go to Top of Page

arup
New Member

United Kingdom
63 Posts

Posted - 05 March 2003 :  08:17:53  Show Profile
Yep, it seems to work fine. Thanks.
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 07 March 2003 :  22:13:48  Show Profile
Instead of just adding it on as #19, we should keep with having them in alphabetical order...

for the names (what the user will see) we should differentiate the two versions of JMail

so it would look like this:
	Dim theComponent(19)
	Dim theComponentName(19)
	Dim theComponentValue(19)

	'## the components
	theComponent(0) = "ABMailer.Mailman"
	theComponent(1) = "Persits.MailSender"
	theComponent(2) = "SMTPsvg.Mailer"
	theComponent(3) = "SMTPsvg.Mailer"
	theComponent(4) = "CDONTS.NewMail"
	theComponent(5) = "CDONTS.NewMail"
	theComponent(6) = "CDO.Message"
	theComponent(7) = "dkQmail.Qmail"
	theComponent(8) = "Dundas.Mailer"
	theComponent(9) = "Dundas.Mailer"
	theComponent(10) = "Geocel.Mailer"
	theComponent(11) = "iismail.iismail.1"
	theComponent(12) = "Jmail.smtpmail"
	theComponent(13) = "Jmail.Message"
	theComponent(14) = "MDUserCom.MDUser"
	theComponent(15) = "ASPMail.ASPMailCtrl.1"
	theComponent(16) = "ocxQmail.ocxQmailCtrl.1"
	theComponent(17) = "SoftArtisans.SMTPMail"
	theComponent(18) = "SmtpMail.SmtpMail.1"
	theComponent(19) = "VSEmail.SMTPSendMail"

	'## the name of the components
	theComponentName(0) = "ABMailer v2.2+"
	theComponentName(1) = "ASPEMail"
	theComponentName(2) = "ASPMail"
	theComponentName(3) = "ASPQMail"
	theComponentName(4) = "CDONTS (IIS 3/4/5)"
	theComponentName(5) = "Chili!Mail (Chili!Soft ASP)"
	theComponentName(6) = "CDOSYS (IIS 5/5.1/6)"
	theComponentName(7) = "dkQMail"
	theComponentName(8) = "Dundas Mail (QuickSend)"
	theComponentName(9) = "Dundas Mail (SendMail)"
	theComponentName(10) = "GeoCel"
	theComponentName(11) = "IISMail"
	theComponentName(12) = "JMail 3.x"
	theComponentName(13) = "JMail 4.x"
	theComponentName(14) = "MDaemon"
	theComponentName(15) = "OCXMail"
	theComponentName(16) = "OCXQMail"
	theComponentName(17) = "SA-Smtp Mail"
	theComponentName(18) = "SMTP"
	theComponentName(19) = "VSEmail"

	'## the value of the components
	theComponentValue(0) = "abmailer"
	theComponentValue(1) = "aspemail"
	theComponentValue(2) = "aspmail"
	theComponentValue(3) = "aspqmail"
	theComponentValue(4) = "cdonts"
	theComponentValue(5) = "chilicdonts"
	theComponentValue(6) = "cdosys"
	theComponentValue(7) = "dkqmail"
	theComponentValue(8) = "dundasmailq"
	theComponentValue(9) = "dundasmails"
	theComponentValue(10) = "geocel"
	theComponentValue(11) = "iismail"
	theComponentValue(12) = "jmail"
	theComponentValue(13) = "jmail4"
	theComponentValue(14) = "mdaemon"
	theComponentValue(15) = "ocxmail"
	theComponentValue(16) = "ocxqmail"
	theComponentValue(17) = "sasmtpmail"
	theComponentValue(18) = "smtp"
	theComponentValue(19) = "vsemail"

I don't know how I missed this in v3.4 and the 3 point releases. I'm pretty sure I had done this, the changes must have been lost somewhere.
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 07 March 2003 :  22:21:41  Show Profile
Kept it in alphabetical order.
Fixed in 3.4.04

Support Snitz Forums
Go to Top of Page

Deleted
deleted

4116 Posts

Posted - 08 March 2003 :  16:55:56  Show Profile
This is why I said "quick fix" . The whole e-mail related stuff are already subject to change in v4b04 to support multi-language and different encodings.

Stop the WAR!
Go to Top of Page

Deleted
deleted

4116 Posts

Posted - 15 March 2003 :  22:03:56  Show Profile
Fixed in v4b04 alpha 04

Stop the WAR!
Go to Top of Page
  Previous Topic Topic Next Topic  
 Forum Locked  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.21 seconds. Powered By: Snitz Forums 2000 Version 3.4.07