all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jone <yeger9@gmail.com>
To: Pierre Neidhardt <ambrevar@gmail.com>
Cc: help-guix@gnu.org
Subject: Re: Right way: define, build and install
Date: Wed, 02 May 2018 19:52:41 +0000	[thread overview]
Message-ID: <87lgd1hm2e.fsf@gmail.com> (raw)
In-Reply-To: <87a7tijaxe.fsf@gmail.com> (message from Pierre Neidhardt on Wed, 02 May 2018 18:10:21 +0200)

My config:

;;; POP3
(defvar email-pswd-tmp nil)
(defun rmail-start ()
  "Get mail through pop3 and view mail; default Gmail."
  (interactive)
  (let ((username "yeger9:")  ;; c ":" в конце!
		(inbox "~/.Mail/rmail-inbox")
		(mail-archive-file-name "~/.Mail/rmail-sent"))
  (if (equal email-pswd-tmp nil)
	  (setq email-pswd-tmp (read-passwd "Enter email password: ")))
  (message "Получение входящей почты...")
  (shell-command (concat "movemail --emacs pops://" username email-pswd-tmp
						 "@pop.gmail.com" " " inbox))
  (rmail)
  (rmail-summary-last-message)))
(add-hook 'rmail-quit-hook (lambda ()
			     (rkill-buffers "rmail.*")))
(add-hook 'mail-setup-hook 'mail-abbrevs-setup)

;;; SMTP
(require 'smtpmail)
(setq send-mail-function 'smtpmail-send-it
      smtpmail-smtp-server "smtp.gmail.com"
      smtpmail-stream-type 'starttls
      smtpmail-smtp-service 587)
(setq user-mail-address "Jone <MYEMAIL@gmail.com>")


i.e. mailutils with "pops" (gmail) it seems.
I use google-translate so I answer slowly. There are only wild
ubuntooids :) As win users.

  parent reply	other threads:[~2018-05-02 16:52 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-02 17:34 Right way: define, build and install Jone
2018-05-02 15:24 ` Julien Lepiller
2018-05-02 18:43   ` Jone
2018-05-02 15:52     ` Julien Lepiller
2018-05-03  7:03       ` Chris Marusich
2018-05-02 18:02     ` Oleg Pykhalov
2018-05-03 22:33       ` Jone
2018-05-04 17:46         ` Oleg Pykhalov
2018-05-02 15:28 ` Pierre Neidhardt
2018-05-02 18:53   ` Jone
2018-05-02 16:10     ` Pierre Neidhardt
2018-05-02 16:32       ` Julien Lepiller
2018-05-02 19:52       ` Jone [this message]
2018-05-02 16:58         ` Pierre Neidhardt
2018-05-02 16:15 ` Pierre Neidhardt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87lgd1hm2e.fsf@gmail.com \
    --to=yeger9@gmail.com \
    --cc=ambrevar@gmail.com \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.