- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: cyrus-imap deliver
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-19-2005 09:06 PM
тАО04-19-2005 09:06 PM
I use cyrus 1.6.24 and sendmail 8.12.11 provided by Internet Express 6.3.
As I want to suppress the multiple delivery of messages to the recipients of a list when a mailbox is unavailable (over quota for example),
my sendmail.cf file contains:
Mimap, P=/usr/cyrus/bin/deliver, F=nsmFDMSu@w, S=10/50, R=20/40, A=deliver -e $u
Generally, the -e options works fine, and I observe many dupelim lines with the message-id in the mail logs.
But in a few cases, the dupelim does not works, and the recipients receive a lot of identical message.
This occurs when the message has both a message-id and a resent-message-id header.
I did a google search and encountered a deliver.c with a reference to resent-message-id header on http://www.mit.edu/afs/sipb.mit.edu/project/imaptools/src/cyrus-imapd-1.6.24/imap/deliver.c
which is quite different from the deliver.c extracted of Internet Express sources CD, which does not refer to this header.
Thank you for your help to solve this problem.
Jacques
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-21-2005 07:33 AM
тАО04-21-2005 07:33 AM
Re: cyrus-imap deliver
The Internet Express version of Cyrus/IMAP
should newer than what is on the MIT
machine. There is re-send logic in
lmtpengine.c (2.2.10). The next release
uses lmtp for local delivery.
What machine is sending the duplicates? Is
it sendmail on the local machine or
is there something else driving the
mail delivery duplicates (such as
a Microsoft Exchange server elsewhere).
What error msgs are in the sendmail log?
What error msgs are in the cyrus log?
thanks
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-21-2005 09:03 PM
тАО04-21-2005 09:03 PM
Re: cyrus-imap deliver
Yes it needs more details.
There is no error neither from sendmail nor from cyrus in the logs of the Tru64 machines (it is a cluster).
When it works as I want (with elimination of duplicated message) i have a "deliver dupelim" log which refers to the message-id-header.
But when there is both a message-id-header and a resent-message-id-header there is no duplication elimination.
All the incoming messages come from a Linux frontend box with Postfix.
I tried to schematize what it occurs in the attached file.
I hope this is clear enough.
Thanks.
Jacques
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-24-2005 07:15 AM
тАО04-24-2005 07:15 AM
Re: cyrus-imap deliver
The IX kit should have had two source files
instead of one: one for the 1.6 Cyrus release
and the other for the 2.0 release. We
included both. Only the 2.0 tar file is
on the kit.
I don't remember whether the 1.6 or 2.0
version handles the resent message id. I
will check the source and update this note
later. The message-id should be enough
information to id the duplicates.
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-24-2005 07:19 AM
тАО04-24-2005 07:19 AM
Re: cyrus-imap deliver
In the case where the messages have
a message id and a resend id, are
the each set of identifiers identical
for the duplicate case that is not being
caught and suppressed properly ?
message-id: msg1
message-id: msg1 resend-id:a
message-id: msg1 resend-id:a
or is it
message-id: msg1
message-id: msg1 resend-id:a
message-id: msg1 resend-id:b
?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-24-2005 07:19 PM
тАО04-24-2005 07:19 PM
Re: cyrus-imap deliver
Do you mean that I must verify if the msg-id header and the resent-msg-id header are identical for each recipient ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-26-2005 07:31 AM
тАО04-26-2005 07:31 AM
Solution2 questions -- when the message is
repeated, is there one original and
one duplicate?
Second question, what does the imapd.conf
file contain?
There should be lines like this (with
other comments) :
duplicate_db: skiplist
duplicatesuppression: 1
# If enabled, lmtpd will suppress delivery
# of a message to a mailbox if a message
# with the same message-id (or
# resent-message-id) is recorded as having
# already been delivered to the mailbox.
# Records the mailbox and
# message-id/resent-message-id of all
# successful deliveries.
Also, there are differences between the
old and newer versions of Cyrus/IMAP in the
imap/deliver.c code that handles the
resent-message-id.
Upgrading to the new version in the next
IX release could fix your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-26-2005 07:27 PM
тАО04-26-2005 07:27 PM
Re: cyrus-imap deliver
My imapd.conf file doesn't contains those lines which seems to be for lmtpd, and I have no lmtpd daemon.
So I think that the best is to upgrade to the next version of IX, as you suggest. I shall do so as soon as possible.
Thank you very much for your help.
Jacques