Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference

Total Page:16

File Type:pdf, Size:1020Kb

Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference USENIX Association Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference San Antonio, Texas, USA June 9-14, 2003 THE ADVANCED COMPUTING SYSTEMS ASSOCIATION © 2003 by The USENIX Association All Rights Reserved For more information about the USENIX Association: Phone: 1 510 528 8649 FAX: 1 510 548 5738 Email: [email protected] WWW: http://www.usenix.org Rights to individual papers remain with the author or the author's employer. Permission is granted for noncommercial reproduction of the work for educational or research purposes. This copyright notice must be included in the reproduced paper. USENIX acknowledges all trademarks herein. ASK: Active Spam Killer Marco Paganini [email protected] www.paganini.net Abstract tion message is crafted in such a way that a simple re- ply keeping the “Subject” line intact will suffice. The We present Active Spam Killer (ASK), a program that confirmation message also contains a unique MD5 [16] attempts to validate unknown senders before allowing hash computed by combining the contents of the original delivery of their message. Validation occurs by means of email with a secret key known only to the recipient. This a challenge reply sent to senders who are not yet known prevents false confirmation returns as the code is based to the system. Messages are kept in a queue pending on the unique characteristics of the receiver. confirmation until the sender replies to the challenge. Further messages coming from confirmed senders are The message remains stored in the pending mail delivered immediately. In a sample of 1000 spam mails, queue until a confirmation return is received (a reply ASK was 99.7% effective at blocking spam, resulting in to the confirmation message with the MD5 hash in the only 3 spam messages being delivered. Other programs’ “Subject” header). When that happens, ASK checks the best ratios were 97.8% or as many as 22 spam messages pending mail queue for a message whose MD5 signa- delivered. ture matches the one in the confirmation return. If found, the original message is delivered from the pending mail 1 Introduction queue and the sender’s email address is automatically added to the whitelist. This sender has now been vali- Unsolicited Commercial Emails (UCEs), also com- dated and all future messages from this address will be monly called “spam” represent a serious problem to immediately delivered. most Internet users, who are constantly bombarded with all sorts of scams, promotions, and offensive material. The sender’s address can also be added to two other This situation has prompted the creation of many differ- lists: the ignorelist and the blacklist. The first causes ent tools to eliminate the problem, with varying degrees emails to be silently ignored while the second not only of success. ignores the email but also sends a message back to the The most common way to deal with spam is to parse originator explaining that future emails coming from this incoming mails and decide whether they should be deliv- address are blocked. ered or not based on their contents. Reasonable results This challenge-authentication scheme guarantees that have been obtained with this technique, but the complex- delivered emails always come from valid senders. Un- ity and diversity of human languages make it a difficult wanted (but technically valid) senders can be easily ig- task. Such content filtering tools propose to attack one nored as they offer a simple key to their detection: their of the weak spots in spam: the message content itself. own email addresses. The effectiveness of such tools can be drastically re- duced when the incoming mail employs an unknown Although an auto-responder could be used to defeat language or even an unknown character set. Also, clev- this method, this is unlikely as it would expose the erly crafted emails may never be detectable as the differ- sender to legal complications, account and service can- ence between those and perfectly valid emails is subtle. cellations, and a fairly large number of ”Invalid Ad- dress” response messages during normal operation. Active Spam Killer (ASK) proposes to attack a dif- ferent weak spot in the spam chain: the validity of the The rest of this paper is organized as follows: Sec- sender’s email address. When a message from an un- tion 2 provides background information on popular anti- known origin is received, a challenge (also known as spam techniques. Section 3 details ASK’s design and confirmation message) is sent back to the mail origi- operation. Section 4 compares the effectiveness of ASK nator. This message contains brief instructions to the against other anti-spam tools. Section 5 surveys other sender on how to get authenticated into the system and challenge-based solutions. Finally, Section 6 presents cause delivery of the original message. The confirma- our conclusions and future work. USENIX Association FREENIX Track: 2003 USENIX Annual Technical Conference 51 2 Background not) coming from spammers who use open relays to send Compared to the traditional method of mailing printed their messages. Even though some RBLs specifically list propaganda, spam costs almost nothing. No mailing in- dial-in lines, often it is not practical to use those as many frastructure is needed except for an Internet account and legitimate users send emails directly from their worksta- a personal computer. A one or two percent return on in- tions over dialup lines. vestment potential applied to millions of emails results Some RBL providers have complicated procedures in a number large enough to justify the approach to a to remove entries from their databases, leading to a number of people. substantial number of false positives (See Section 4.1). The first ingredient is a large number of email ad- Also, there are normally no whitelist mechanisms avail- dresses, usually obtained by harvesting addresses off the able to regular users, meaning that it is impossible to Internet. A study conducted by the Federal Trade Com- grant access to a certain known valid email or IP with- mission concluded that 86% of all addresses posted to out supervisory privileges. Web pages and to the newsgroups received spam [5]. 2.2 Content Filtering Tools Anything resembling an email address is collected and used. Those without the resources to mine the addresses Tools in this category try to detect spam by investigating themselves can purchase CDs containing ready-to-use the content of received emails. lists of addresses. Early attempts used simplistic keyword filters, nor- Next, a Mass Emailer like DynamicMailer [3] is used mally implemented with generic mail processing tools. to deliver the message to the list of addresses. These Specific strings like “Dear Sir” in the body of the email programs normally provide certain facilities like header would flag the message as spam. This produced inaccu- forging, sending emails directly from the user’s worksta- rate results and a fairly large number of false positives. tion (bypassing the need for an SMTP server) and others. A more sophisticated approach to the problem em- Spammers must always act as inconspicuously as pos- ploys scoring of certain keywords, sentences and char- sible to avoid account cancellation, revenge from angry acteristics pertinent to spam mail. A simple “Dear Sir” users, and legal problems. The sender’s email address might indicate that we are dealing with spam, but “Dear is often forged to an invalid address or to a throw-away Sir,”“Click Here,” and “Call now” in the same email account from a free web-mail provider. These accounts message are a very clear indication. SpamAssassin [20] are rapidly filled with bounce messages as a result of utilizes this technique. outdated and invalid emails in the list. Usually, a complex set of rules exists with a positive Instructions on how to obtain the product or service or negative numeric score assigned to each rule. Rules offered are normally contained in the body of the mail, that clearly indicate spam receive high values. Negative with URLs pointing to the Web page of the seller. values reduce the probability of the email being classi- Next, we outline the most common anti-spam tech- fied as spam (even in the presence of other clear indica- niques in use today. tions). A rule to match a string like “Dear Sir/Madam” will have a lower score than “Work from home” as the 2.1 Realtime Blackhole Lists latter is a clearer indication of the common home em- Misconfigured mail servers will relay any incoming ployment Internet scams. Expressions like “Usenix” message to any destination without control. These and “Algorithm” would receive a negative value as they servers can be used to deliver mail indiscriminately and strongly suggest that this is not a spam mail. The mail in many cases, anonymously. will be marked as spam if the sum of all matching scores Realtime Blackhole Lists (RBLs) are online databases exceeds a user-defined threshold. containing the IP address of such servers. These There are specific and distinct rules for the email databases are queried by Mail Transfer Agents (MTAs) headers and body. The rules applied to the headers will upon receipt of a new message. If the IP address origi- be equally effective, regardless of the language used to nating the connection is listed in the database, the con- send the email. Body analysis however is greatly af- nection will be terminated and the appropriate error code fected by language: a set of rules that perfectly detects will be sent. Some RBLs also keep dial-in IP addresses emails in the English language could completely miss in an attempt to detect messages sent directly from dial- emails written in Italian or Korean.
Recommended publications
  • 200106-Mutt.Pdf
    ●サポートしている機能 プロトコルに関しては、以下のものサポートしています。 Muttの概要 他のメーラでも対応しているプロトコルは、ほとんど実装し ていますが、送信に関しては、外部プログラムを使用するよ 皆さんは「Mutt」というMUA*1をご存じでしょうか? 非常 うになっています。ただし、一部のプロトコル*3は、バー に軽快で高機能な割には、日本国内では知名度がイマイチで ジョン1.3以降だけで実装されています。 利用者も少ないMUAです。知名度が低い原因には、Muttに関 ・MIME(RFC2231も含む) する日本語の情報が少ないことが挙げられます。Muttに関す ・POP3、IMAP4 Rev.1 る日本語のWebサイトも片手の指で数えられるくらいしかあ ・POP/IMAP over SSL りませんし、UNIX系の雑誌でMuttに関する記事もほとんどあ りません*2。 そこで本記事では、「Muttとは何ぞや」から始まり、インス トール、設定、メールの送受信が出来るまでの説明を行いま す。この記事を読んでMuttについて興味を持っていただけた ら幸いです。 Muttとは? Muttは、Michael R. Elkins氏によって開発されたUNIX系OS の端末で動く、CUIなMUAです(記事末のRESOURCE[1]を 参照)。ユーザーインターフェイスや実装している機能は、 「ELM」、「pine」、「Mush」、「slrn」といった他のMUAやニュー ズリーダーを参考にして作られており、文字通り、「雑種犬 (mutt)」のようなメーラです(画面1)。 画面1 CUIながら、豊富なカラー対応など、見た目は派手(にもできる) *1 「Mail User Agent」あるいは「Message User Agent」の略。ユーザーによるメールの読み書きを補助するためのプログラム。メールリーダやメーラとも 呼ばれる。 *2 筆者の知る限り、これまで1つしか見たことはない。 Linux Japan June 2001 35 SPECIAL さらに、Mutt自身が持っていない機能(エディタや送信の機能 など)は外部プログラムを用いることになります。 ●安定版と開発版およびその日本語パッチ Muttは、安定版と開発版の2つのバージョンが公開されてい ます。現在は、安定版が「バージョン1.2」、開発版が「バージョ ン1.3」となっています。バージョン1.2までは、マルチバイト 文字をサポートしていなかったため、そのままでは日本語が 扱えず、吉田行範氏を中心として開発された日本語パッチが 必要でした。一方、バージョン1.3は、XPG5*4の国際化機能が 画面2 インデックス一覧画面では、文字罫線でスレッドを表現 実装され、基本的には日本語を扱えるようになりました。し ・POP/IMAP over ssh かし、日本語特有の事情(いわゆる「ヘッダの生JIS問題」や「機 ・APOP、SASLによる認証 種依存文字の文字化け」など)があるため、そのままでは実用 ・DSN(Delivery Status Notification)、PGP/MIME 上、問題があります。そこで、筆者が中心となって、実際に ・mbox、MMDF、MH、Maildir形式のメールボックス 日本語を扱う上で問題となる点を修正し、ほぼ通常の利用に 表示に関しては以下のような特徴を持っています(画面2、 は差し支えないようにした日本語パッチを開発しています。 画面3、画面4)。 バージョン1.2とバージョン1.3の日本語パッチは全く別の実 装なので、バージョン1.2以前のものからバージョン1.3に移行 ・カラフルな表示
    [Show full text]
  • Unit 13 E-Mail and E-Messaging
    UNIT 13 E-MAIL AND E-MESSAGING Structure 13.0 Objectives 13.1 Introduction 13.2 E-mail 13.2.1 Defining Email 13.2.2 Need of Email 13.2.3 Email Address 13.3 Types of Email Services 13.3.1 Free Web-based Email Services 13.3.2 Priced Web-based Email Services 13.3.3 Private Email Services 13.4 Types of Email Account 13.4.1 POP/IMAP Account 13.4.2 Email Forwarder 13.4.3 Mailing List 13.4.4 Auto Responder 13.4.5 Email Bouncer 13.4.6 Email Blackhole 13.5 Structure and Features of Email 13.5.1 Header 13.5.2 Body 13.5.3 Features 13.6 Functioning of Email Systems 13.6.1 Protocols 13.6.2 Delivery Agent 13.6.3 Access Client 13.6.4 Setting up Account 13.6.5 Folder Management 13.7 Messaging 13.7.1 Instant Messaging 13.7.2 Unified Messaging 13.8 Issues with Messaging 13.8.1 Spamming 13.8.2 Privacy 13.8.3 Security 13.9 Widgets and Utilities 13.10 Summary 13.11 Answers to Self Check Exercises 13.12 Keywords 13.13 References and Further Reading 5 Internet Tools and Services 13.0 OBJECTIVES After reading this Unit, you will be able to: provide a detailed account about Email and Email service Providers; explain in detail various Protocols used in Email service; and discuss about Web 2.0 tools in Email. 13.1 INTRODUCTION Electronic Mail is one of the most prominent uses of networked communication technology.
    [Show full text]
  • The Qmail Handbook by Dave Sill ISBN:1893115402 Apress 2002 (492 Pages)
    < Free Open Study > The qmail Handbook by Dave Sill ISBN:1893115402 Apress 2002 (492 pages) This guide begins with a discussion of qmail s history, architecture and features, and then goes into a thorough investigation of the installation and configuration process. Table of Contents The qmail Handbook Introduction Ch apt - Introducing qmail er 1 Ch apt - Installing qmail er 2 Ch apt - Configuring qmail: The Basics er 3 Ch apt - Using qmail er 4 Ch apt - Managing qmail er 5 Ch apt - Troubleshooting qmail er 6 Ch apt - Configuring qmail: Advanced Options er 7 Ch apt - Controlling Junk Mail er 8 Ch apt - Managing Mailing Lists er 9 Ch apt - Serving Mailboxes er 10 Ch apt - Hosting Virtual Domain and Users er 11 Ch apt - Understanding Advanced Topics er 12 Ap pe ndi - How qmail Works x A Ap pe ndi - Related Packages x B Ap pe ndi - How Internet Mail Works x C Ap pe ndi - qmail Features x D Ap pe - Error Messages ndi x E Ap pe - Gotchas ndi x F Index List of Figures List of Tables List of Listings < Free Open Study > < Free Open Study > Back Cover • Provides thorough instruction for installing, configuring, and optimizing qmail • Includes coverage of secure networking, troubleshooting issues, and mailing list administration • Covers what system administrators want to know by concentrating on qmail issues relevant to daily operation • Includes instructions on how to filter spam before it reaches the client The qmail Handbook will guide system and mail administrators of all skill levels through installing, configuring, and maintaining the qmail server.
    [Show full text]
  • Projeto Final
    Centro Universitário de Brasília – UniCEUB Faculdade de Tecnologia e Ciências Sociais Aplicadas – FATECS Projeto Final Remasterização de uma distribuição GNU/Linux visando uma solução automatizada para servidores de e-mail Thiago de Almeida Milhomem RA: 2046610/3 Monografia de Conclusão do Curso de Engenharia de Computação Professor orientador: M.Sc. Antônio José Gonçalves Pinto Brasília – DF, junho de 2009 Thiago de Almeida Milhomem Remasterização de uma distribuição GNU/Linux visando uma solução automatizada para servidores de e-mail Trabalho de conclusão do curso de Engenharia de Computação da Faculdade de Tecnologia e Ciências Sociais Aplicadas, para obtenção do título de Bacharelado em Engenharia de Computação pelo Centro Universitário de Brasília – UniCEUB. Professor orientador: M.Sc. Antonio José Gonçalves Pinto Brasília – DF, junho de 2009 AGRADECIMENTOS Gostaria de agradecer à minha família pelo apoio e paciência durante o período de realização desse projeto. Ao meu amigo e chefe, Alfredo Gomes da Silva Júnior, pelo compartilhamento de idéias e apoio. À minha namorada, Dayanna de Menezes Martins, pela atenção, compreenção e carinho. RESUMO Este projeto apresenta uma solução para servidores de correio eletrônico, com o foco na facilidade na administração, que possa ser instalada e configurada de forma simples e rápida. Isso é feito através da remasterização da imagem de instalação de um sistema GNU/Linux, que possui a finalidade de automatizar todo o processo de instalação e configuração do servidor. São abordados diversos temas relacionados ao serviço de e-mail, utilizados na implementação do servidor. Também é discutido todo o processo de automatização da instalação e configuração do servidor. A segurança da solução é garantida através de criptografia e ferramentas que auxiliam no combate aos spams.
    [Show full text]
  • L06 Mail.Pdf
    Informacijski sistemi in odprta koda Elektronska pošta doc. dr. Anton Biasizzo, univ. dipl. inž. Institut Jozef Stefan [email protected] Informacijski sistemi in odprta koda Univerza v Novi Gorici, Poslovno-tehniška fakulteta Elektronska pošta Sistem za izmenjavo sporočil Prvi začetki v 1960-ih letih, sredi 1970 zdajšnja oblika (RFC 561 leta 1973) Sistem deluje po principu store-and-forward Na začetku podprt ASCII text, razširjen na UTF-8 Multipurpose Internet Mail Extensions (MIME) Uporaba drugih kodnih tabel (slovanski,…) Multimedijska vsebina Elektronska pošta Vloga strežnika elektronske pošte Sprejema (accept) Posreduje (forward) Dostavlja (deliver) Shranjuje (store) Vloga klienta elektronske pošte Pisanje sporočil Branje sporočil Urejanje sporočil Podpisovanje sporočil Delovanje elektronske pošte 1. Mail User Agent (MUA - klient) dostavi pošto SMTP strežniku (smtp.a.org). 2. Mail Submission Agent (MSA) (smtp.a.org) na podlagi naslova povpraša DNS strežnik (ns.b.org) za naslov končnega strežnika. 3. DNS strežnik (ns.b.org) odgovori z naslovom strežnika (pop3.b.org). Delovanje elektronske pošte 4. Strežnik (smtp.a.org) pošlje sporočilo Message Transfer Agent-u (MTA) strežnika (pop3.b.org). MTA lahko sporočilo posreduje drugemu MTA Message Delivery Agent (MDA) shrani sporočilo v predal. Delovanje elektronske pošte 5. Mail User Agent (MUA) klient prejemnika pobere sporočilo s strežnika (pop3.b.org): Post Office Protocol (POP3, POP3s) Internet Message Access Protocol (IMAP, IMAPs). Format elektronske pošte Glava
    [Show full text]
  • LNCS 2763, Pp
    A High Performance and Low Cost Cluster-Based E-mail System Woo-Chul Jeun1, Yang-Suk Kee1, Jin-Soo Kim2, and Soonhoi Ha1 1 School of Electrical Engineering and Computer Science, Seoul National University, San 56-1, Sinlim-dong, Gwanak-gu, Seoul 151-744, Korea {wcjeun, yskee, sha}@iris.snu.ac.kr 2 Division of Computer Science, KAIST, Daejeon 305-701, Korea [email protected] Abstract. A large-scale e-mail service provider requests a highly scal- able and available e-mail system to accommodate the increasing volume of e-mail traffic as well as the increasing number of e-mail users. To reduce the system development and maintenance cost, it is requested to make the system modular using off-the-shelf components. In this pa- per, we propose a cluster-based e-mail system architecture to achieve the goals of high scalability and availability, and low development and maintenance cost. We adopt the internal structure of a typical Internet e-mail system for a single server, called the MTA-MDA structure, to the proposed system architecture for the low cost requirements. We have implemented four different system configurations with the MTA-MDA structure and compare their performances. Experimental results show that the proposed system architecture achieves all the design objectives. 1 Introduction The growth of the Internet has led to an explosion in volumes of e-mail traffic and in number of the users of e-mail service. At the same time, large-scale e-mail service providers have appeared. They have hundreds of millions of subscribers and process billions of messages: for example, in May 2001, Hotmail had over 100 million users and Yahoo! Mail, in March 1999, served 45 million users with 3.6 billion mail messages [1][2].
    [Show full text]
  • 1} What Is 訴 Node All UNIX Files Have Its Description Stored in a Structure Called 訴 Node the Inode Contains Info About
    1} what is 訴 node All UNIX files have its description stored in a structure called 訴 node The inode contains info about the file-size, its location, time of last access, time of last modification, permission and so on. Directories are also represented as files and have an associated inode. 2} what are the process states in UNIX? As a process executes it changes state according to its circumstances. Unix processes have the following states: Running: The process is either running or it is ready to run . Waiting: The process is waiting for an event or for a resource. Stopped: The process has been stopped, usually by receiving a signal. Zombie: The processes are dead but have not been removed from the process table. 3} what command should you use to check the number of files and disk space used and each user 痴 defined quotas? repquota 4} what command is used to remove the password assigned to a group? gpasswd 睦 5} what can you type at a command line to determine which shell you are using? echo $SHELL 6} write a command to find all of the files which have been accessed within the last 30 days. find / -type f -atime -30 > filename.txt 7} what is a zombie? Zombie is a process state when the child dies before the parent process. In this case the structural information of the process is still in the process table. 7} what daemon is responsible for tracking events on your system? syslogd 8} what do you mean a File System? File System is a method to store and organize files and directories on disk.
    [Show full text]
  • Qmail Quickstarter: Install, Set up and Run Your Own Email Server
    Qmail Quickstarter Install, Set Up, and Run your own Email Server A fast-paced and easy-to-follow, step-by-step guide that gets you up and running quickly Kyle Wheeler BIRMINGHAM - MUMBAI Qmail Quickstarter Install, Set Up, and Run your own Email Server Copyright © 2007 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, Packt Publishing, nor its dealers or distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: June 2007 Production Reference: 1040607 Published by Packt Publishing Ltd. 32 Lincoln Road Olton Birmingham, B27 6PA, UK. ISBN 978-1-847191-15-1 www.packtpub.com Cover Image by Vinayak Chittar ([email protected]) [ FM- ] Credits Author Editorial Manager Kyle Wheeler Dipali Chittar Reviewer Project Coordinator Russell Nelson Abhijeet Deobhakta Development Editor Indexer Nanda Padmanabhan Bhushan Pangaonkar Assistant Development Editor Proofreader Rashmi Phadnis Chris Smith Technical Editor Production Coordinator Saurabh Singh Manjiri Nadkarni Code Testing Cover Designer Ankur Shah Manjiri Nadkarni Project Manager Patricia Weir [ FM- ] About the Author Kyle Wheeler is a PhD candidate at the University of Notre Dame in the Computer Science and Engineering Department.
    [Show full text]
  • How Qmail Works
    APPENDIX A How qmail Works You DON'T NEED TO UNDERSTAND how qmail works to install or use qmail. And you don't have to be an auto mechanic to operate a car or a watchmaker to tell time. Eut if you really want to master qmail, knowing exactly how it does what it does is crucial. Luckily, qmail's simple, modular design makes understanding how it works easy for a system as complex as a Mail Transfer Agent (MTA). This appendix takes a top-down approach: first looking at how the modules interact with each other, then looking at how each module does its job. High-Level Overview The grand division in qmail is between the modules that accept new messages and place them into the queue and the modules that deliver them from the queue. We'll call these functions receivingand sending. The separation between receiving and sending is complete: Either of these functions can be fully oper­ ational while the other is shut down. Figure A-l shows the high-level organization of qmail. Incoming Receiving Queue Sending Delivered Messages Messages Figure A -1. High-level qmail organization Receiving Messages enter the queue through two main routes: local injection using qmail-inject or sendmail and network injection using qmail-smtpd, qmail-qmtpd 417 AppendixA or qmail-qmqpd. Both ofthese routes use qmail-queue to actually inject their mes­ sages into the queue. Figure A-2 shows the organization ofthe receiving function. QMQP tcpserver QMTP tcpserver SMTP tcpserver Queue Local------------­ MUA Figure A-2. The receivingfunction Sending Messages are delivered from the queue through two main routes: local delivery using qma il-loca 1 and remote delivery using qma il-remote.
    [Show full text]
  • Gmail Protocol Host Port Email Piping
    Gmail Protocol Host Port Email Piping Running Traver sometimes uncanonising his institutionalism unchangeably and encloses so longitudinally! Steepled Levon nurtures tutti and globularly, she bird's-nest her tiger's-eye miscast spectrally. Greater Lorenzo contemporised very inexpertly while Dana remains slimsy and pyrogenous. See receive that makes any difference. POP or IMAP for my email settings? Just any question: pflogsumm configured as you fire it sends me daily summary email but graylisting warning lines are also included, can blood be omitted in rough way? Refers to granularity of encryption for nutrition content. Harmony users and timing out while an eyepiece facilities have automatic backups of a chromic coating outside your attention should. How to dismantle your website files to our server? International Bureau of WIPO, International Preliminary proof on Patentability Issued in Application No. The email address chips onto a strict. It looks like our mail has been delivered. Use telnet or wrong similar to connect. This is even detain or gmail host that if you write the speed. To argue around this, change the grant name query to liberate real attack of one shaft the servers in the vest or exit a corresponding IP address. Your mail server is the logging output using gmail app to be covered in hoogle cloud products and record or gmail protocol host port email piping. To furnish a filter that catches an email that mate both noreply and plus. An initial entry of smtp server machines that others of possible causes packer template for a certificate in space? To undermine the email server from repair a message into the spam folder issue and again, auto classification out determine the spam folder will usually be done.
    [Show full text]
  • Postfix the Definitive Guide
    [ Team LiB ] • Table of Contents • Index • Reviews • Reader Reviews • Errata • Academic Postfix: The Definitive Guide By Kyle D. Dent Publisher: O'Reilly Pub Date: December 2003 ISBN: 0-596-00212-2 Pages: 264 Postfix: The Definitive Guide eases readers from the basic configuration to the full power of Postfix. It discusses the interfaces to various tools that round out a fully scalable and highly secure email system. These tools include POP, IMAP, LDAP, MySQL, Simple Authentication and Security Layer (SASL), and Transport Layer Security (TLS, an upgrade of SSL). A reference section for Postfix configuration parameters and an installation guide are included. [ Team LiB ] [ Team LiB ] • Table of Contents • Index • Reviews • Reader Reviews • Errata • Academic Postfix: The Definitive Guide By Kyle D. Dent Publisher: O'Reilly Pub Date: December 2003 ISBN: 0-596-00212-2 Pages: 264 Copyright Foreword Preface Audience Organization Conventions Used in This Book Comments and Questions Acknowledgments Chapter 1. Introduction Section 1.1. Postfix Origins and Philosophy Section 1.2. Email and the Internet Section 1.3. The Role of Postfix Section 1.4. Postfix Security Section 1.5. Additional Information and How to Obtain Postfix Chapter 2. Prerequisites Section 2.1. Unix Topics Section 2.2. Email Topics Chapter 3. Postfix Architecture Section 3.1. Postfix Components Section 3.2. How Messages Enter the Postfix System Section 3.3. The Postfix Queue Section 3.4. Mail Delivery Section 3.5. Tracing a Message Through Postfix Chapter 4. General Configuration and Administration Section 4.1. Starting Postfix the First Time Section 4.2. Configuration Files Section 4.3.
    [Show full text]
  • Introduction
    Life with qmail Life with qmail Table of Contents 1. Introduction........................................................................................................................................1 1.1. Audience..............................................................................................................................1 1.2. What is qmail?.....................................................................................................................1 1.3. Why use qmail?...................................................................................................................1 1.4. History.................................................................................................................................2 1.5. Features................................................................................................................................2 1.6. Related packages..................................................................................................................4 1.7. Architecture.........................................................................................................................5 1.8. License.................................................................................................................................5 1.9. Comparison with other MTA's............................................................................................5 1.10. Documentation...................................................................................................................5
    [Show full text]