From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jone Subject: Re: Right way: define, build and install Date: Wed, 02 May 2018 19:52:41 +0000 Message-ID: <87lgd1hm2e.fsf@gmail.com> References: <87a7tijaxe.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDuzd-0000cB-RK for help-guix@gnu.org; Wed, 02 May 2018 12:52:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDuza-0006or-Ih for help-guix@gnu.org; Wed, 02 May 2018 12:52:37 -0400 Received: from mail-lf0-x22f.google.com ([2a00:1450:4010:c07::22f]:44181) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDuza-0006oP-9J for help-guix@gnu.org; Wed, 02 May 2018 12:52:34 -0400 Received: by mail-lf0-x22f.google.com with SMTP id h197-v6so21821216lfg.11 for ; Wed, 02 May 2018 09:52:34 -0700 (PDT) In-Reply-To: <87a7tijaxe.fsf@gmail.com> (message from Pierre Neidhardt on Wed, 02 May 2018 18:10:21 +0200) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Pierre Neidhardt Cc: help-guix@gnu.org 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 ":" =D0=B2 =D0=BA=D0=BE=D0=BD=D1=86=D0= =B5! (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 "=D0=9F=D0=BE=D0=BB=D1=83=D1=87=D0=B5=D0=BD=D0=B8=D0=B5 =D0=B2= =D1=85=D0=BE=D0=B4=D1=8F=D1=89=D0=B5=D0=B9 =D0=BF=D0=BE=D1=87=D1=82=D1=8B..= .") (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 ") i.e. mailutils with "pops" (gmail) it seems. I use google-translate so I answer slowly. There are only wild ubuntooids :) As win users.