It is currently Wed Jun 19, 2013 5:46 pm

All times are UTC + 1 hour




Post new topic Reply to topic  [ 355 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 24  Next
Author Message
 Post subject:
PostPosted: Thu Jun 09, 2005 3:02 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
jqn wrote:
Hi, gnozal

Very useful library, but I need a new feature:
In Headers are "Content-Type: text/plain; charset=iso-8859-1".

There is a way to change this?.
I will need "Content-Type: text/html; charset=iso-8859-1".

JOAQUN

For the next version (after my holidays :wink: )

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 10:32 am 
Offline
PureBasic Expert
PureBasic Expert

Joined: Fri Apr 25, 2003 5:24 pm
Posts: 6565
This example from the Help doesn't work for me:

Code:
MyPOP3Server.s = "pop3.test@test.fr"
MyPOP3Port.l = 110
MyPOPUser.s = "Test"
MyPOP3Password.s = "Test"
NumberOfMails.l = PureSMTP_POP3Messages(MyPOP3Server, MyPOP3Port, MyPOPUser, MyPOP3Password)
; Returns number of e-mails at POP3 server [>= 0 , else is error code]
If NumberOfMails >= 0
  MessageRequester("POP3", "You have " + Str(NumberOfMails) + " message(s)", 0)
Else
  MessageRequester("ERROR", "Error code = " + Str(NumberOfMails), 0)
EndIf


I always get an error code of -3, my login details are all correct and the
same as what I use with Outlook, which works perfectly... :)


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 10:39 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
PB wrote:
This example from the Help doesn't work for me:

Sorry it worked for me. I don't use any POP3 server anymore.
The goal of the library was to handle SMTP functions, I only added this POP3 function for a friend wich used POP3 some time ago.

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 11:47 am 
Offline
PureBasic Expert
PureBasic Expert

Joined: Fri Apr 25, 2003 5:24 pm
Posts: 6565
> The goal of the library was to handle SMTP functions

That's what I downloaded it for too, but it would have been nice to make use
of the POP3 function. Does that mean you don't intend to fix that function?


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 12:44 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
PB wrote:
> The goal of the library was to handle SMTP functions
That's what I downloaded it for too, but it would have been nice to make use of the POP3 function. Does that mean you don't intend to fix that function?

I don't have any POP3 server to play with.
What is the last server message (PureSMTP_LastServerMessage)?

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Last edited by gnozal on Sat Aug 20, 2005 8:24 am, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 1:22 pm 
Offline
PureBasic Expert
PureBasic Expert

Joined: Fri Apr 25, 2003 5:24 pm
Posts: 6565
> I don't have any POP3 server to play with.

Oops, okay, I missed that bit. I'm tired. :)

> What is the last server message (PureSMTP_LastServerMessage)?

It's: +OK

I even turned off Kerio just to make doubly sure...


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 2:23 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
PB wrote:
> I don't have any POP3 server to play with.
Oops, okay, I missed that bit. I'm tired. :)
> What is the last server message (PureSMTP_LastServerMessage)?
It's: +OK
I even turned off Kerio just to make doubly sure...

Strange.
I will change the function, use STAT instead of LIST.

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 20, 2005 8:29 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Update

Some user requests.
- SendMail() : like the Attachements argument, the MailTo argument now accepts multiple recipients ;
- POP3Messages() : changed, should work better but I have no POP3 server to test !

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 24, 2005 8:40 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Thu Mar 25, 2004 2:15 pm
Posts: 557
Location: Spain
gnozal wrote:
jqn wrote:
Hi, gnozal

Very useful library, but I need a new feature:
In Headers are "Content-Type: text/plain; charset=iso-8859-1".

There is a way to change this?.
I will need "Content-Type: text/html; charset=iso-8859-1".

JOAQUN

For the next version (after my holidays :wink: )


any news about "Content-Type: text/html"? :roll:

gnozal, Thank you for your very useful libs :D

_________________
PB 4.x, PureVision and EsGrid User.
Pure FileMaster as portable FileManager


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 24, 2005 9:43 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
zikitrake wrote:
any news about "Content-Type: text/html"? :roll:
Oops, forgot that one :oops:
I will add it, promise.
zikitrake wrote:
gnozal, Thank you for your very useful libs :D
Thanks :D

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 24, 2005 10:49 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Update

What's new :
- new function PureSMTP_SetContentType()

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 24, 2005 11:13 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Thu Mar 25, 2004 2:15 pm
Posts: 557
Location: Spain
gnozal wrote:
Update

What's new :
- new function PureSMTP_SetContentType()


:shock: fast boy! (not fat boy :lol: )

one (or two) thousand thanks

Tested: It's works great!

_________________
PB 4.x, PureVision and EsGrid User.
Pure FileMaster as portable FileManager


Top
 Profile  
 
 Post subject:
PostPosted: Mon Nov 14, 2005 12:21 pm 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Update

Changes
- enhanced MailFrom argument for PureSMTP_SendMail()
. simple mail address : MailFrom = "name@domain.com"
. or real name + mail address : MailFrom = "Name <name@domain.com>"
- new function : PureSMTP_SetXMailer()

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject:
PostPosted: Mon Nov 14, 2005 1:44 pm 
Offline
User
User

Joined: Sat Sep 10, 2005 5:38 pm
Posts: 52
W.O.W. !!! Really fast changes!!! :o :o :o :o


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 07, 2006 4:59 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Thu Mar 25, 2004 2:15 pm
Posts: 557
Location: Spain
any chance to update it with Tailbite alpha? :lol: :D :roll:

_________________
PB 4.x, PureVision and EsGrid User.
Pure FileMaster as portable FileManager


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 355 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 24  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye