<div dir="ltr"><div><span style="color:rgb(53,28,117)">Hi Everyone,<br><br></span></div><span style="color:rgb(53,28,117)">Sending mail from mutt failed<br>Error:<br><b>SMTP session failed: 501 5.5.4  <a href="https://support.google.com/mail/?p=helo">https://support.google.com/mail/?p=helo</a> a67sm14180316pgc.5 - gsmtp</b><br></span><div><div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)">I follow the instructions from</span></div><div><span style="color:rgb(53,28,117)"> <a href="https://kernelnewbies.org/FirstKernelPatch">https://kernelnewbies.org/FirstKernelPatch</a><br></span></div><div><span style="color:rgb(53,28,117)"><a href="http://elixir.free-electrons.com/linux/latest/source/Documentation/process/email-clients.rst">http://elixir.free-electrons.com/linux/latest/source/Documentation/process/email-clients.rst</a><br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)"> to setup environments and send patch to linux kernel for review.<br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)">Mutt able to fetch mail from my gmail mail box but sending mail fails with<br>following error:<br><br><b>SSL/TLS connection using TLS1.2 (ECDHE-RSA/AES-128-GCM/AEAD)<br>-- Mutt: Compose  [Approx. msg size: 0.1K   Atts: 1]-------------------------------------------------------------------------------------------<br>SMTP session failed: 501 5.5.4  <a href="https://support.google.com/mail/?p=helo">https://support.google.com/mail/?p=helo</a> a67sm14180316pgc.5 - gsmtp<br></b><br><br>krishna@krishna-pc:~$ <b>tail -f /var/log/mail.log</b><br>Dec  9 01:01:03 krishna-pc sm-msp-queue[15372]: unable to qualify my own domain name (krishna-pc) -- using short name<br>Dec  9 01:20:01 krishna-pc sm-msp-queue[16297]: My unqualified host name (krishna-pc) unknown; sleeping for retry<br>Dec  9 09:32:48 krishna-pc sm-mta[2043]: starting daemon (8.15.2): SMTP+queueing@00:10:00<br>Dec  9 09:32:49 krishna-pc sm-msp-queue[1325]: unable to qualify my own domain name (krishna-pc) -- using short name<br>Dec  9 09:40:01 krishna-pc sm-msp-queue[3338]: My unqualified host name (krishna-pc) unknown; sleeping for retry<br>krishna@krishna-pc:~$ <br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)"><u><b>Following are my configuration which is setup on </b></u><br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)">krishna@krishna-pc:~$ <b>lsb_release -a</b><br>No LSB modules are available.<br>Distributor ID:    Ubuntu<br>Description:    Ubuntu 16.04.3 LTS<br>Release:    16.04<br>Codename:    xenial<br>krishna@krishna-pc:~$ <b>uname -a</b><br>Linux krishna-pc 4.10.0-42-generic #46~16.04.1-Ubuntu SMP Mon Dec 4 15:57:59 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux<br>krishna@krishna-pc:~$ <br></span></div><div><span style="color:rgb(53,28,117)"><br></span></div><div><span style="color:rgb(53,28,117)">krishna@krishna-pc:~$ <b>cat ~/.muttrc</b><br><br>set sendmail=&quot;/usr/bin/esmtp&quot;<br>set realname = &quot;Pravin Shedge&quot;<br>set from = &quot;<a href="mailto:pravin.shedge4linux@gmail.com">pravin.shedge4linux@gmail.com</a>&quot;<br>set use_from = yes<br>set envelope_from = yes<br>set edit_headers = yes<br><br><br>set smtp_url = &#39;smtps://pravin.shedge4linux@gmail.com@<a href="http://smtp.gmail.com">smtp.gmail.com</a>&#39;<br>set smtp_pass = &#39;****&#39;<br>set imap_user = &#39;<a href="mailto:pravin.shedge4linux@gmail.com">pravin.shedge4linux@gmail.com</a>&#39;<br>set imap_pass = &#39;****&#39;<br>set folder = &#39;imaps://<a href="http://imap.gmail.com/">imap.gmail.com/</a>&#39;<br>set spoolfile = +INBOX<br>set ssl_force_tls = yes<br>#set ssl_starttls = yes<br>#<br>## G to get mail<br>#bind index G imap-fetch-mail<br>set editor = &quot;vi&quot;<br>set edit_headers = yes  # See the headers when editing<br>set charset = UTF-8     # value of $LANG; also fallback for send_charset<br>set send_charset=&quot;us-ascii:utf-8&quot;<br>set record=&quot;&quot;<br>set postponed=&quot;+[Gmail]/Drafts&quot;<br>set mbox=&quot;imaps://<a href="http://imap.gmail.com/[Gmail]/All">imap.gmail.com/[Gmail]/All</a> Mail&quot;<br>set trash=&quot;imaps://<a href="http://imap.gmail.com/[Gmail]/Trash">imap.gmail.com/[Gmail]/Trash</a>&quot;<br><br># Sender, email address, and sign-off line must match<br>#<br>unset use_domain    # because joe@localhost is just embarrassing<br>#set include=ask-yes    <br>#set print=ask-yes<br>#set postpone=ask-yes<br>#set postponed = &quot;imaps://<a href="http://imap.gmail.com/[Gmail]/Drafts">imap.gmail.com/[Gmail]/Drafts</a>&quot;<br>#set header_cache = &quot;~/.mutt/cache/headers&quot;<br>#set message_cachedir = &quot;~/.mutt/cache/bodies&quot;<br>#set certificate_file = &quot;~/.mutt/certificates&quot;<br>#set move = no<br>#set imap_keepalive = 900<br>#set imap_passive<br>krishna@krishna-pc:~$ <br><br>krishna@krishna-pc:~$<b> cat .gitconfig</b><br>[user]<br>    email = <a href="mailto:pravin.shedge4linux@gmail.com">pravin.shedge4linux@gmail.com</a><br>    name = Pravin Shedge<br>[sendemail]<br>    smtpencryption = tls<br>    smtpserver = <a href="http://smtp.gmail.com">smtp.gmail.com</a><br>    smtpuser = <a href="mailto:pravin.shedge4linux@gmail.com">pravin.shedge4linux@gmail.com</a><br>    smtpserverport = 587<br>    smtppass = &quot;****&quot;<br></span></div><div><span style="color:rgb(53,28,117)">krishna@krishna-pc:~$<b> cat ~/.esmtprc</b><br>identity &quot;<a href="mailto:pravin.shedge4linux@gmail.com">pravin.shedge4linux@gmail.com</a>&quot;<br>hostname <a href="http://smtp.gmail.com:587">smtp.gmail.com:587</a><br>username &quot;<a href="mailto:pravin.shedge4linux@gmail.com">pravin.shedge4linux@gmail.com</a>&quot;<br>password &quot;****&quot;<br>starttls required<br></span></div><div><span style="color:rgb(53,28,117)">krishna@krishna-pc:~$ <b>tail -f /var/log/syslog</b><br>Dec  9 10:40:01 krishna-pc CRON[4755]: (smmsp) CMD (test -x /etc/init.d/sendmail &amp;&amp; test -x /usr/share/sendmail/sendmail &amp;&amp; test -x /usr/lib/sm.bin/sendmail &amp;&amp; /usr/share/sendmail/sendmail cron-msp)<br>Dec  9 10:44:30 krishna-pc systemd-timesyncd[609]: Timed out waiting for reply from [2001:67c:1560:8003::c7]:123 (<a href="http://ntp.ubuntu.com">ntp.ubuntu.com</a>).<br>Dec  9 10:45:01 krishna-pc CRON[4831]: (root) CMD (command -v debian-sa1 &gt; /dev/null &amp;&amp; debian-sa1 1 1)<br>krishna@krishna-pc:~$<br><br>krishna@krishna-pc:~$<b> cat /etc/resolv.conf</b><br># Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)<br>#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN<br>nameserver 127.0.1.1<br>search photonmax3g.wifi<br>krishna@krishna-pc:~$<br><br>krishna@krishna-pc:~$<b> ip addr</b><br>1: lo: &lt;LOOPBACK,UP,LOWER_UP&gt; mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000<br>    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00<br>    inet <a href="http://127.0.0.1/8">127.0.0.1/8</a> scope host lo<br>       valid_lft forever preferred_lft forever<br>    inet6 ::1/128 scope host <br>       valid_lft forever preferred_lft forever<br>2: enp2s0: &lt;NO-CARRIER,BROADCAST,MULTICAST,UP&gt; mtu 1500 qdisc mq state DOWN group default qlen 1000<br>    link/ether 00:26:2d:74:82:d3 brd ff:ff:ff:ff:ff:ff<br>3: wlp4s0: &lt;NO-CARRIER,BROADCAST,MULTICAST,UP&gt; mtu 1500 qdisc noqueue state DOWN group default qlen 1000<br>    link/ether 90:4c:e5:56:c5:a0 brd ff:ff:ff:ff:ff:ff<br>5: enx001e101f0000: &lt;BROADCAST,MULTICAST,UP,LOWER_UP&gt; mtu 1500 qdisc pfifo_fast state UP group default qlen 1000<br>    link/ether 00:1e:10:1f:00:00 brd ff:ff:ff:ff:ff:ff<br>    inet <a href="http://192.168.1.100/24">192.168.1.100/24</a> brd 192.168.1.255 scope global dynamic enx001e101f0000<br>       valid_lft 86387sec preferred_lft 86387sec<br>    inet6 fe80::8fff:8915:878b:1b6b/64 scope link <br>       valid_lft forever preferred_lft forever<br>krishna@krishna-pc:~$ cat /etc/resolv.conf <br># Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)<br>#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN<br>nameserver 127.0.1.1<br>search photonmax3g.wifi<br>krishna@krishna-pc:~$<b> cat /etc/hosts</b><br>127.0.0.1    localhost<br>127.0.0.1    krishna-pc<br><br># The following lines are desirable for IPv6 capable hosts<br>::1     ip6-localhost ip6-loopback<br>fe00::0 ip6-localnet<br>ff00::0 ip6-mcastprefix<br>ff02::1 ip6-allnodes<br>ff02::2 ip6-allrouters<br>krishna@krishna-pc:~$<br></span></div><div><br></div><div><span style="color:rgb(53,28,117)">Do I missing something ?</span></div><div><span style="color:rgb(53,28,117)">Please let me know....</span><br></div><div><br clear="all"></div><div><div><div class="gmail_signature"><span style="color:rgb(53,28,117)"> Thanks &amp; Regards<br>         PraviN<br>   +919156991946</span></div></div>
</div></div></div></div>