9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] nupas for smtpcarm
@ 2017-01-24  1:04 岡本健二
  2017-01-27  1:34 ` 岡本健二
  0 siblings, 1 reply; 12+ messages in thread
From: 岡本健二 @ 2017-01-24  1:04 UTC (permalink / raw)
  To: 9fans

I had been blocked to post mail here from my ordinal mail server.
Then I changed server to another which has smtp auth potocol.
It was written as smtpcram() function in nupas/smtp/smtpc
by erik.   However, it has a bug.
Please change the line in smtpcram() in smtp.c as:

	dBprint("%s\r\n", ch);
to
	dBprint("%s\r\n", ebuf);

Kenji

( the changed smtp server is still blocked, and this is my first use
of gmail on abaco)



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-24  1:04 [9fans] nupas for smtpcarm 岡本健二
@ 2017-01-27  1:34 ` 岡本健二
  2017-01-28 21:00   ` Richard Miller
  0 siblings, 1 reply; 12+ messages in thread
From: 岡本健二 @ 2017-01-27  1:34 UTC (permalink / raw)
  To: 9fans

>( the changed smtp server is still blocked, and this is my first use
of gmail on abaco)

I'm using 9pif of 9front.
Now I checked the standard 9pi, and found it's abaco does not support
gmail on it, sorry.

Kenji


2017-01-24 10:04 GMT+09:00, 岡本健二 <keoknj55@gmail.com>:
> I had been blocked to post mail here from my ordinal mail server.
> Then I changed server to another which has smtp auth potocol.
> It was written as smtpcram() function in nupas/smtp/smtpc
> by erik.   However, it has a bug.
> Please change the line in smtpcram() in smtp.c as:
>
> 	dBprint("%s\r\n", ch);
> to
> 	dBprint("%s\r\n", ebuf);
>
> Kenji
>
> ( the changed smtp server is still blocked, and this is my first use
> of gmail on abaco)
>



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-27  1:34 ` 岡本健二
@ 2017-01-28 21:00   ` Richard Miller
  2017-01-28 23:20     ` hiro
                       ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Richard Miller @ 2017-01-28 21:00 UTC (permalink / raw)
  To: 9fans

> Now I checked the standard 9pi, and found it's abaco does not support
> gmail on it, sorry.

To access gmail.com webmail from plan 9, patch libsec-x509-sha256rsa
must be applied (and webfs/abaco recompiled with new libsec).

However this now seems to be necessary but not sufficient.  Trying
this today (from 386 or bcm), without the patch I get a tlsclient
file descriptor error message.  With the patch, I get to the gmail
account sign-in page, but entering account and password just keeps
returning to the same sign-in page.

If it's possible to sign in to gmail with abaco on 9front, can
someone offer a hint about what the essential extra ingredient is?




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-28 21:00   ` Richard Miller
@ 2017-01-28 23:20     ` hiro
  2017-01-29  9:30       ` Richard Miller
  2017-01-29  9:30       ` Richard Miller
  2017-01-30  1:25     ` 岡本健二
  2017-01-30  2:30     ` 岡本健二
  2 siblings, 2 replies; 12+ messages in thread
From: hiro @ 2017-01-28 23:20 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

try accessing mail.google.com/mail/h/ manually after login, even if
the login keeps reappearing it might be your session cookie is already
valid.

On 1/28/17, Richard Miller <9fans@hamnavoe.com> wrote:
>> Now I checked the standard 9pi, and found it's abaco does not support
>> gmail on it, sorry.
>
> To access gmail.com webmail from plan 9, patch libsec-x509-sha256rsa
> must be applied (and webfs/abaco recompiled with new libsec).
>
> However this now seems to be necessary but not sufficient.  Trying
> this today (from 386 or bcm), without the patch I get a tlsclient
> file descriptor error message.  With the patch, I get to the gmail
> account sign-in page, but entering account and password just keeps
> returning to the same sign-in page.
>
> If it's possible to sign in to gmail with abaco on 9front, can
> someone offer a hint about what the essential extra ingredient is?
>
>
>



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-28 23:20     ` hiro
@ 2017-01-29  9:30       ` Richard Miller
  2017-01-29  9:30       ` Richard Miller
  1 sibling, 0 replies; 12+ messages in thread
From: Richard Miller @ 2017-01-29  9:30 UTC (permalink / raw)
  To: 9fans

> try accessing mail.google.com/mail/h/ manually after login, even if
> the login keeps reappearing it might be your session cookie is already
> valid.

Thanks, that gets a bit farther - into the first screen of
messages, and I managed to open a message.  But it's
unusably slow - eg if I adjust the window, it takes 75 sec
before something appears on the page again.

Is there a newer version of abaco somewhere?  Sources version
is dated 2013.




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-28 23:20     ` hiro
  2017-01-29  9:30       ` Richard Miller
@ 2017-01-29  9:30       ` Richard Miller
  2017-01-29  9:44         ` hiro
  1 sibling, 1 reply; 12+ messages in thread
From: Richard Miller @ 2017-01-29  9:30 UTC (permalink / raw)
  To: 9fans

> try accessing mail.google.com/mail/h/ manually after login, even if
> the login keeps reappearing it might be your session cookie is already
> valid.

Thanks, that gets a bit farther - into the first screen of
messages, and I managed to open a message.  But it's
unusably slow - eg if I adjust the window, it takes 75 sec
before something appears on the page again.

Is there a newer version of abaco somewhere?  Sources version
is dated 2013.




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-29  9:30       ` Richard Miller
@ 2017-01-29  9:44         ` hiro
  2017-01-29 17:35           ` Richard Miller
  0 siblings, 1 reply; 12+ messages in thread
From: hiro @ 2017-01-29  9:44 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

are you running this on a raspbeery pi?



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-29  9:44         ` hiro
@ 2017-01-29 17:35           ` Richard Miller
  0 siblings, 0 replies; 12+ messages in thread
From: Richard Miller @ 2017-01-29 17:35 UTC (permalink / raw)
  To: 9fans

> are you running this on a raspbeery pi?

No, this was on a 386 (atom) cpu server on a slow remote
connection.  Just tried again on a raspberry pi with a
direct ethernet connection to my terminal, and that's
much faster.  So the libsec-x509-sha256rsa patch seems
to be enough.




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-28 21:00   ` Richard Miller
  2017-01-28 23:20     ` hiro
@ 2017-01-30  1:25     ` 岡本健二
  2017-01-30  2:30     ` 岡本健二
  2 siblings, 0 replies; 12+ messages in thread
From: 岡本健二 @ 2017-01-30  1:25 UTC (permalink / raw)
  To: 9fans

I'm using the most recent )front CD image(5641.6149f97a7801) and the
one older version, both of which works for gmail.

Abaco is not so different, but webfs is much newer, I suppose.
Probably, most works did by cinap and others on this and tls.
Cinap can answer best on this I suppose.

(I tried to attach my gmail screen(using Japanese), but
failed to do it.  If neccessary I can send it to yoiu from
ordinal mail.   I have problem to use that for 9fans.

Kenji



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-28 21:00   ` Richard Miller
  2017-01-28 23:20     ` hiro
  2017-01-30  1:25     ` 岡本健二
@ 2017-01-30  2:30     ` 岡本健二
  2017-01-31 21:50       ` hiro
  2 siblings, 1 reply; 12+ messages in thread
From: 岡本健二 @ 2017-01-30  2:30 UTC (permalink / raw)
  To: 9fans

Going 9pi2 image includes the libsec-x509-sha256rsa already.
I tried http://mail.google.com/mail/h directory.
Now I'm in the same user interface as before.
Yes, WE Can (old?).

Kenji



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-30  2:30     ` 岡本健二
@ 2017-01-31 21:50       ` hiro
  2017-01-31 22:47         ` Skip Tavakkolian
  0 siblings, 1 reply; 12+ messages in thread
From: hiro @ 2017-01-31 21:50 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> Yes, WE Can (old?).
Make gmail great again.



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [9fans] nupas for smtpcarm
  2017-01-31 21:50       ` hiro
@ 2017-01-31 22:47         ` Skip Tavakkolian
  0 siblings, 0 replies; 12+ messages in thread
From: Skip Tavakkolian @ 2017-01-31 22:47 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 181 bytes --]

This thread would be funny if it didn't hurt so much.

On Tue, Jan 31, 2017 at 2:08 PM hiro <23hiro@gmail.com> wrote:

> > Yes, WE Can (old?).
> Make gmail great again.
>
>

[-- Attachment #2: Type: text/html, Size: 463 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2017-01-31 22:47 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-24  1:04 [9fans] nupas for smtpcarm 岡本健二
2017-01-27  1:34 ` 岡本健二
2017-01-28 21:00   ` Richard Miller
2017-01-28 23:20     ` hiro
2017-01-29  9:30       ` Richard Miller
2017-01-29  9:30       ` Richard Miller
2017-01-29  9:44         ` hiro
2017-01-29 17:35           ` Richard Miller
2017-01-30  1:25     ` 岡本健二
2017-01-30  2:30     ` 岡本健二
2017-01-31 21:50       ` hiro
2017-01-31 22:47         ` Skip Tavakkolian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).