Page 24 of 25

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Mon Dec 12, 2011 10:53 pm
by IdeasVacuum
All of gnozal's libs are currently 32bit only, so you can't compile them into a 64bit app. Should be fine in a 32bit app running on 64bit.

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Wed Dec 14, 2011 3:12 pm
by ROUMANET
Thanks, but I've an other answer that simplify my life : Purebasic 4.60 already include email's functions (sendmail, etc.) :)
No need PureSMTP anymore (in my case).

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Wed Dec 14, 2011 3:15 pm
by MachineCode
PureSMTP is far better than PureBasic's mail sending, believe me!

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Wed Dec 14, 2011 5:19 pm
by IdeasVacuum
Unfortunately PB's email lib is out of date, it currently doesn't support authentication and that makes it less than useful for sending. Gnozal's lib is generally superior anyway, much better functionality and good speed. If producing a 32bit app is an issue, you could perhaps just make the email part a separate 32bit exe and call it from your main app.

POLINK: error: Unresolved external symbol '_PB_FindString'

Posted: Fri Dec 16, 2011 12:16 am
by Thade
I changed to 4.60 and back to the previous version several times during the last 2 month
But still cannot compile my main application.

I get a messagerequester:
POLINK: error: Unresolved external symbol '_PB_FindString'.
POLINK: fatal error: 1 unresolved external(s).

Something obviously has changed ... my program was made in 2006 and updated 3 - 4 times each year ... with 4.60 is the first time I cannot run and compile it.

Re: POLINK: error: Unresolved external symbol '_PB_FindStrin

Posted: Fri Dec 16, 2011 12:27 am
by STARGÅTE
No Bug in PB.

You must also update you User-Libs to 4.60!!

Re: POLINK: error: Unresolved external symbol '_PB_FindStrin

Posted: Fri Dec 16, 2011 12:56 am
by Thade
Thank you for your fast answer

The only userlib I use is the PureSMTP library
Freeware by Philippe GUNTZ a.k.a. gnozal [xxx email xxx or http://people.freenet.de/gnozal]
Please report any bugs at the purebasic forum.

The website does not exist anymore

I will try to email gnozal

Thanks again

Re: POLINK: error: Unresolved external symbol '_PB_FindStrin

Posted: Fri Dec 16, 2011 8:49 am
by gnozal
Thade wrote:The only userlib I use is the PureSMTP library
PureSMTP forum thread : http://www.purebasic.fr/english/viewtop ... 25&t=12752

See 'Download' section.

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Fri Dec 16, 2011 12:24 pm
by Thade
Thanks - that solved the problem
Just updated the lib and it works again.

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Wed Apr 17, 2013 2:18 pm
by bobobo
Hi

It would be usefull if a mail in ISO-8859-1 would change the subject
automatically as shown in the following proc

i stumbled upon this issue when testing with the webmailfrontend from t-online.
With german umlaute (ä ö ü ..) in subject it wouldn't show this mails
because the subject was malformed

Other mailclients and frontends had no problems with the "umlaute"
but have no problems with coded subjects too. (gmx webfrintend can't deal with coded subject ..Image)
tested without unicode

Code: Select all

Procedure.s subjectformer(subject.s)
  ;Codierung der Umlaute in Mails für ISO-8859-1
  For i=1 To Len(subject)
    test=Asc(Mid(Subject,i,1))
    If test>127
      subjectn.s+ "="+Hex(test)
    Else
      subjectn+Chr(test)
    EndIf
  Next
  ProcedureReturn "=?ISO-8859-1?Q?"+subjectn+"?="
EndProcedure
;Subject.s="Ümläütä"
;subject=Subjectformer(subject)
;Debug subject

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Fri Sep 27, 2013 9:09 am
by Rbender
Hi,

after updating to PB5.2 I can't compile my programs with the PureSMTP library.
I got an error calling: Missing library MISC for PureSMTP_LIB_8

Using the last version 5.00 from your libraries and jaPBe :-)

Hope you can help ....

Ralf

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Fri Sep 27, 2013 1:49 pm
by yrreti

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Fri Sep 27, 2013 3:04 pm
by Rbender
Ok, so gnozal has to do that

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Fri Sep 27, 2013 3:21 pm
by yrreti
Yes, gnozal has to do that, and hope he does.
In his credit, he has made many very good contributions to the forum over the years.

Re: PureSMTP library : mail & attachments (AUTH supported)

Posted: Fri Sep 27, 2013 3:34 pm
by Rbender
I'm fully agree. He did a perfect job!!!!!