help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help setting up POP3 email (rmail)


From: cptvlaze
Subject: Re: Help setting up POP3 email (rmail)
Date: Fri, 26 Feb 2016 23:56:45 +0000 (GMT)

It does not seem to work :( I'm attaching my code, just for revision...

;; Firstly setup SMTP.
(require 'smtpmail)
(setq send-mail-function 'smtpmail-send-it)
      smtpmail-smtp-server "mail.foomail.com"
      smtpmail-smtp-service 587
      user-mail-address "foo@foomail")
;; The line below puts sent items into an mbox file.
(setq mail-default-headers "FCC: ~/Mail/Sent")
;; This puts my name correctly in email To/From lines.
(setq user-full-name "Fooname Barname")

;; Setup Rmail
(setq rmail-primary-inbox-list
      (cons (concat "pop3://"
                    "foo@foomail.com"
                    "foopassword"
                    "@mail.foomail.com") nil))


---------
Now I'm getting:

load-with-code-conversion: Invalid read syntax: ")"
Ah, and emacs tells me to 'Send Mail via Gnus Mail'. I guess this code
is for gnus, isn't it?
Thank you for your attention!


26. Feb 2016 20:57 por embe8573@student.uu.se:


> <> cptvlaze@tutamail.com> > writes:]
>
>> Following your code, emacs will return me the
>> following error:
>>
>> At startup:
>>
>> 'load-with-code-conversion: Symbol's value as
>> variable is void: smtpmail-smtp-server'
>
> Try to put this above the code and have that eval'd as
> well:
>
>     (require 'smtpmail)
>
>> ...and trying to send my email, after asking me for
>> my server username, email and password...
>>
>> 'smtpmail-send-it: Sending failed: 550-Requested
>> action not taken: mailbox unavailable 550 Sender
>> address is not allowed.'
>
> That means you have either sent to an bogus target or
> your ISP don't allow you to send mails.
>
> But I think the problem is still with your
> configuration... Examine it more closely and ask again
> if you don't know.
>
> --
> underground experts united
> http://user.it.uu.se/~embe8573


reply via email to

[Prev in Thread] Current Thread [Next in Thread]