The node specified by the designator in the subject of your message
("0712") does not exist.

Subject was: "[issue0712]"



Mail Gateway Help
=================
Incoming messages are examined for multiple parts:
 . In a multipart/mixed message or part, each subpart is extracted and
   examined. The text/plain subparts are assembled to form the textual
   body of the message, to be stored in the file associated with a "msg"
   class node. Any parts of other types are each stored in separate files
   and given "file" class nodes that are linked to the "msg" node.
 . In a multipart/alternative message or part, we look for a text/plain
   subpart and ignore the other parts.
 . A message/rfc822 is treated similar tomultipart/mixed (except for
   special handling of the first text part) if unpack_rfc822 is set in
   the mailgw config section.

Summary
-------
The "summary" property on message nodes is taken from the first non-quoting
section in the message body. The message body is divided into sections by
blank lines. Sections where the second and all subsequent lines begin with
a ">" or "|" character are considered "quoting sections". The first line of
the first non-quoting section becomes the summary of the message.

Addresses
---------
All of the addresses in the To: and Cc: headers of the incoming message are
looked up among the user nodes, and the corresponding users are placed in
the "recipients" property on the new "msg" node. The address in the From:
header similarly determines the "author" property of the new "msg"
node. The default handling for addresses that don't have corresponding
users is to create new users with no passwords and a username equal to the
address. (The web interface does not permit logins for users with no
passwords.) If we prefer to reject mail from outside sources, we can simply
register an auditor on the "user" class that prevents the creation of user
nodes with no passwords.

Actions
-------
The subject line of the incoming message is examined to determine whether
the message is an attempt to create a new item or to discuss an existing
item. A designator enclosed in square brackets is sought as the first thing
on the subject line (after skipping any "Fwd:" or "Re:" prefixes).

If an item designator (class name and id number) is found there, the newly
created "msg" node is added to the "messages" property for that item, and
any new "file" nodes are added to the "files" property for the item.

If just an item class name is found there, we attempt to create a new item
of that class with its "messages" property initialized to contain the new
"msg" node and its "files" property initialized to contain any new "file"
nodes.

Triggers
--------
Both cases may trigger detectors (in the first case we are calling the
set() method to add the message to the item's spool; in the second case we
are calling the create() method to create a new node). If an auditor raises
an exception, the original message is bounced back to the sender with the
explanatory message given in the exception.
Return-Path: <bounce+27be32.9b1c6-report=bugs.python....@psf.io>
X-Original-To: rep...@bugs.python.org
Delivered-To: roundup+trac...@psf.upfronthosting.co.za
Received: from mail-s66.mailgun.info (mail-s66.mailgun.info [184.173.153.194])
        by psf.upfronthosting.co.za (Postfix) with ESMTP id 53B4456409
        for <rep...@bugs.python.org>; Fri, 10 Oct 2014 05:14:01 +0200 (CEST)
DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=psf.io; q=dns/txt; 
s=pic;
 t=1412910840; h=Sender: Date: Message-Id: Subject: To: From:
 Content-Transfer-Encoding: Content-Type: Mime-Version;
 bh=PuJ5UDTNvFmlHB1gzazWno72gwvn/4DE/XOQPeyGtag=; 
b=W4aQpv6kgX0ITrv4ZKHlXeMa0rV0J3Io1LiBddpXxMBUFfeIjVVBN2yrogBNw2p7S30RF2UM
 5LqC7THAxJJs624POhgGUBa/yrlhsduRt3iYMBBSm0dmW1iSZhLDjz5P47uUr7lohFmji1NE
 PBAhrbZhOVTiCdpAvmZcLiD6rqM=
DomainKey-Signature: a=rsa-sha1; c=nofws; d=psf.io; s=pic; q=dns;
 h=Mime-Version: Content-Type: Content-Transfer-Encoding: From: To:
 Subject: Message-Id: Date: Sender;
 b=fJ1T03pzmFY+mTLf2OWnneGSldPnWMtNMxr6guYl4dx3zgT34kFyE2l7Eo6D2h9lh34VJM
 WxR49/s7PDkCuJdzYVvxDIZknPwbLfitOpYeF/mV+Hkbf/cWt6+1Ul4ZKjYTBBMNafEIMxEb
 mfujAAi5afCRcjBli6GxMEVUGoy1Q=
Received: from hg.psf.io (hg.psf.io [23.253.158.192]) by mxa.mailgun.org
 with ESMTP id 54374ef6.7f84fc4c5210-in6; Fri, 10 Oct 2014 03:13:58 -0000
 (UTC)
Mime-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
From: tracker-discuss@python.org
To: rep...@bugs.python.org
Subject: [issue0712]
Message-Id: <20141010031358.58875.77...@psf.io>
X-Mailgun-Sid: WyIzZGMxOSIsICJyZXBvcnRAYnVncy5weXRob24ub3JnIiwgIjliMWM2Il0=
Date: Fri, 10 Oct 2014 03:14:00 +0000
Sender: tracker-discuss=python....@psf.io

TmV3IGNoYW5nZXNldCA5MzM2YjQ3MDU0NGIgYnkgUiBEYXZpZCBNdXJyYXkgaW4gYnJhbmNoICcy
LjcnOgojMDcxMjogMnRvMyBoYXMgYSBuZXcgImFzc2VydHMiIGZpeGVyIHRoYXQgcmVwbGFjZXMg
ZGVwcmVjYXRlZCBuYW1lcyBvZiB1bml0dGVzdCBtZXRob2RzLgpodHRwczovL2hnLnB5dGhvbi5v
cmcvY3B5dGhvbi9yZXYvOTMzNmI0NzA1NDRiCg==
_______________________________________________
Tracker-discuss mailing list
Tracker-discuss@python.org
https://mail.python.org/mailman/listinfo/tracker-discuss

Reply via email to