Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14036822
D15990.id38489.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D15990.id38489.diff
View Options
diff --git a/src/docs/user/configuration/configuring_inbound_email.diviner b/src/docs/user/configuration/configuring_inbound_email.diviner
--- a/src/docs/user/configuration/configuring_inbound_email.diviner
+++ b/src/docs/user/configuration/configuring_inbound_email.diviner
@@ -216,39 +216,3 @@
That will forward all mail to @yourdomain.com to the Phabricator processing
script. Run `sudo /etc/mail/make` or similar and then restart sendmail with
`sudo /etc/init.d/sendmail restart`.
-
-= Local MTA: Configuring Lamson =
-
-Before you can configure Lamson, you need to install Mailparse. See the section
-"Installing Mailparse" above.
-
-In contrast to Sendmail, Lamson is relatively easy to configure. It is fairly
-minimal, and is suitable for a development or testing environment. Lamson
-listens for incoming SMTP mails and passes the content directly to Phabricator.
-
-To get started, follow the provided instructions
-(<http://lamsonproject.org/docs/getting_started.html>) to set up an instance.
-One likely deployment issue is that binding to port 25 requires root
-privileges. Lamson is capable of starting as root then dropping privileges, but
-you must supply `-uid` and `-gid` arguments to do so, as demonstrated by
-Step 8 in Lamson's deployment tutorial (located here:
-<http://lamsonproject.org/docs/deploying_oneshotblog.html>).
-
-The Lamson handler code itself is very concise; it merely needs to pass the
-content of the email to Phabricator:
-
- import logging, subprocess
- from lamson.routing import route, stateless
- from lamson import view
-
- PHABRICATOR_ROOT = "/path/to/phabricator"
- PHABRICATOR_ENV = "custom/myconf"
- LOGGING_ENABLED = True
-
- @route("(address)@(host)", address=".+")
- @stateless
- def START(message, address=None, host=None):
- if LOGGING_ENABLED:
- logging.debug("%s", message.original)
- process = subprocess.Popen([PHABRICATOR_ROOT + "scripts/mail/mail_handler.php",PHABRICATOR_ENV],stdin=subprocess.PIPE)
- process.communicate(message.original)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 11, 12:17 PM (1 w, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6720047
Default Alt Text
D15990.id38489.diff (1 KB)
Attached To
Mode
D15990: Remove Lamson documentation
Attached
Detach File
Event Timeline
Log In to Comment