<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jules</title>
    <description>The latest articles on DEV Community by Jules (@jaynsenda).</description>
    <link>https://dev.to/jaynsenda</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F306151%2Fe3239aac-0836-4ee0-83d4-e4985bca1c83.png</url>
      <title>DEV Community: Jules</title>
      <link>https://dev.to/jaynsenda</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jaynsenda"/>
    <language>en</language>
    <item>
      <title>Getting Json array of articles </title>
      <dc:creator>Jules</dc:creator>
      <pubDate>Thu, 02 Jan 2020 11:56:35 +0000</pubDate>
      <link>https://dev.to/jaynsenda/getting-json-array-of-articles-cok</link>
      <guid>https://dev.to/jaynsenda/getting-json-array-of-articles-cok</guid>
      <description>&lt;p&gt;After writing my first article on Dev.to, I am unable to get the Json array containing the article I wrote to add this on my website. &lt;/p&gt;

&lt;p&gt;I am using the below link to view the Json array: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/api/articles?username=jaynsenda"&gt;https://dev.to/api/articles?username=jaynsenda&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Is there any configuration I need to do in order to get this array? &lt;br&gt;
Can anyone please help me? &lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

</description>
      <category>api</category>
      <category>rest</category>
      <category>jason</category>
    </item>
    <item>
      <title>Testing email protocols by typing out command over a network protocol</title>
      <dc:creator>Jules</dc:creator>
      <pubDate>Thu, 02 Jan 2020 11:11:22 +0000</pubDate>
      <link>https://dev.to/jaynsenda/testing-email-protocols-by-typing-out-command-over-a-network-protocol-3l9n</link>
      <guid>https://dev.to/jaynsenda/testing-email-protocols-by-typing-out-command-over-a-network-protocol-3l9n</guid>
      <description>&lt;h2&gt;Summary&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You can test email protocols by typing out the commands over a network connection. &lt;br&gt;
For example, for POP3 you can !!!!TELNET!!!! on port 110&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;We cant test POP3S over telnet because you can't just type out the SSL handshake.&lt;br&gt;
You can use openssl s_client to replace telnet when connecting to a POP3S server. s_client does the SSH handshake and allows you to type data over the encrypted connection like telnet allows over unencrypted.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Testing POP3 on port 110:&lt;/h2&gt;

&lt;p&gt;Type the following command on terminal: &lt;/p&gt;

&lt;pre&gt;$ telnet [host] [port]&lt;/pre&gt;

&lt;p&gt;eg:  telnet 192.168.123.4 110&lt;/p&gt;

&lt;p&gt;Then  after +OK The Microsoft Exchange POP3 service is ready.&lt;br&gt;
Type USER followed by the username then hit enter&lt;br&gt;
Then type PASS followed by the password&lt;/p&gt;

&lt;p&gt;eg:&lt;/p&gt;

&lt;pre&gt;USER test@your-domain &lt;/pre&gt;

&lt;p&gt;Then enter:&lt;/p&gt;

&lt;pre&gt;PASS testing&lt;/pre&gt;

&lt;p&gt;Then a message will be displayed to specify whether the correct credentials were provided or not.&lt;/p&gt;

&lt;h2&gt;Testing POP3 on port 995:&lt;/h2&gt;

&lt;p&gt;Type the following command on terminal. &lt;/p&gt;

&lt;pre&gt;$ openssl s_client -connect [host]:[port] -crlf&lt;/pre&gt;

&lt;p&gt;eg:  openssl s_client -connect 192.168.123.4:995 -crlf&lt;/p&gt;

&lt;p&gt;Then  after +OK The Microsoft Exchange POP3 service is ready.&lt;br&gt;
Type USER followed by the username then hit enter&lt;br&gt;
Then type PASS followed by the password&lt;/p&gt;

&lt;p&gt;eg:&lt;/p&gt;

&lt;pre&gt;USER test@your-domain &lt;/pre&gt;

&lt;p&gt;Then enter:&lt;/p&gt;

&lt;pre&gt;PASS testing&lt;/pre&gt;

&lt;p&gt;Then a message will be displayed to specify whether the correct credentials were provided or not.&lt;/p&gt;

</description>
      <category>testing</category>
      <category>devops</category>
      <category>network</category>
      <category>cmd</category>
    </item>
  </channel>
</rss>
