Skip to content

Commit 019c87d

Browse files
committed
- signed-off-by: mcnorton05 <mcnorton05@gmail.com>
1 parent 240e20c commit 019c87d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<p align="center">"<i>My skills are making things work, not knowing a billion facts. [...] If I need to fix a system I’ll identify the problem, check the logs and look up the errors. If I need to implement a solution I’ll research the right solution, implement and document it, the later on only really have a general idea of how it works unless I interact with it frequently... it’s why it’s documented.</i>" - Sparcrypt (Reddit)</p>
1212

13-
<br>
13+
<br>zf
1414

1515
<p align="center">
1616
<a href="http://www.gnu.org/licenses/">
@@ -893,7 +893,11 @@ Useful resources:
893893
<details>
894894
<summary><b>What POP and IMAP are, and how to choose which of them you should implement? ***</b></summary><br>
895895

896-
To be completed.
896+
POP and IMAP are both protocols for retrieving messages from a mail server to a mail client.
897+
898+
POP (Post Office Protocol) uses a one way push from mail server to client. By default this will send messages to the POP mail client and remove them from the mail server, though it is possible to configure the mail server to retain all messages. Any actions you take on the message in your mail client (labeling, deleting, moving to a folder) will not be reflected on the mail server, and thus inaccessible to other mail clients pulling from the mail server. POP uses little storage space on the mail server and can be seen as more secure since messages only exist on one mail client instead of the mail server and multiple clients.
899+
900+
IMAP (Internet Message Access Protocol) uses two way communication between mail server and client. Deleting or labeling a message in your mail client configured with IMAP will also delete or label the message on the mail server. IMAP allows for a similar experience when accessing mail across different clients or devices since messages can existing in the same state across multiple devices. IMAP can also save disk space on the mail client by selectively syncing messages, deleting older messages from the mail client since it can sync them from the mail server later as needed.
897901

898902
</details>
899903

@@ -4483,7 +4487,7 @@ To be completed.
44834487
<details>
44844488
<summary><b>What is the difference between an authoritative and a nonauthoritative answer to a DNS query? ***</b></summary><br>
44854489
4486-
To be completed.
4490+
An authoritative DNS query answer comes from the server that contains the zone files for the domain queried. This is the name server that the domain administrator set up the DNS records on. A nonauthoriative answer comes from a name server that does not host the domain zone files (for example, a commonly used name server has the answer cached such as Google's 8.8.8.8 or OpenDNS 208.67.222.222).
44874491

44884492
</details>
44894493

0 commit comments

Comments
 (0)