[squeak-dev] I wish I was sending this from Inbox Talk, but I cannot figure out how to do that

mail at jaromir.net mail at jaromir.net
Thu Nov 4 19:00:40 UTC 2021


Hi,
I've just struggled with the same problem too. I normally send from my desktop using my Microsoft hosted account (or a web based email) but couldn't make the SMTP settings work for sending from the Inbox Talk. Check this thread: http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-November/216886.html

I finally managed to send via my local Internet provider's SMTP server which however doesn't support authenticated login so I had to tweak the SMTP implementation - see in the thread.

Try this simple test (do-it in the Workspace) - will it send an email to you?:

SMTPClient
	deliverMailFrom: 'gettimothy at zoho.com'
	to: {'gettimothy at zoho.com'}
	text: 'Hello 25'
	usingServer: 'smtp.xxxxxxxx.com:25'		"fill in your smtp server"
	userName: 'gettimothy at zoho.com'
	password: 'xxxxxxxxxxx'					"fill in your password"

or experiment with alternate smtp settings or other servers...

^[^ Jaromir
  ---

Sent from Squeak Inbox Talk

On 2021-11-04T14:43:37-04:00, gettimothy at zoho.com wrote:

> Hi
> 
> 
> 
> First off, this is really a cool project. Well done.
> 
> 
> 
> I can read/filter etc mail just fine on the interface. Very nice.
> 
> 
> 
> I would like to send a congradulatory email from that interface.
> 
> 
> 
> 
> 
> To prefece this, I can send mail from my workstation to my zoho email account just fine, so I am guessing it should send to the list just fine.
> 
> (but I do not know this)
> 
> 
> 
> 
> 
> When I first try, it asks me for some information and I tried some stuff, but it did not work.
> 
> 
> 
> Where is this information stored?
> 
> 
> 
> Is there a Help available for the package?
> 
> 
> 
> thanks in advance.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20211104/88f10d7c/attachment.html>
> 
> 


More information about the Squeak-dev mailing list