Custom Query (332 matches)
Results (76 - 78 of 332)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#270 | fixed | Attachments of type "Text/Plain" are not attached if more than one attachment is sent | bas | hju@… |
Description |
I'm facing a strange effect with attachments. We use blat 2.6.2 to send logfiles from batchjobs using the "-attach" parameter. If there is only one file "file1.txt", this file of type "TEXT/PLAIN" is attached and processed fine with email2trac (means: attached to a new ticket) I've extended the processing to send three attachments:
All files are simple text-files In this case, file3 is of type "APPLICATION/OCTET-STREAM" (depends on extension, i guess). Only file3.dimport is attached. The other files are ignored (no warning or error). I changed the blat parameter to "-attacht" to attach the logs as Text-Attachments. The mail-attachments are now all of type "TEXT/PLAIN", but nothing is attached by email2trac (no warning or error) Looking at the code, it themes clear because this attachments are explicitly excluded in def get_message_parts(self, msg): def get_message_parts(self, msg): ... for part in msg.walk(): ... ## Save all non plain text message as attachment # if not content_type in ['text/plain']: Strange that a single TEXT/PLAIN attachment is processed by email2trac... Maybe it's a solution to remove this restriction, but I think this is not restricted without reason. In older versions of email2trac, this part was handled different... |
|||
#269 | invalid | Any user can subscribe by self on any ticket in any tracs via email2trac | bas | slevin@… |
Description |
If user know the project name, he is can change it in replay message to trac or he is can create a new e-mail to trac with and known Project_Name and after one space #Ticket_id in subject filed and send it. So trac subcribe that user after receive that message on ticket=#ID and Project =Project_Name from subject in the received e-mail without any checks of email authors permissions. I guess enought to checking author of email (or senders e-mail address) with fileds author,CC (or any subcribers list) in exist ticket (equal ticket_id from subject in e-mail) and when users_name can't find in tickets subscribers of ticket - drop e-mail (or any other action) Bas, can U make control of this check like variable in email2trac.conf ? - for example: check_subscribers_list = 0/1 |
|||
#268 | fixed | tickets not created when recipient_list is not the first in the to-field | bas | anonymous |
Description |
I set only one account in the recipient_list. When the users sends an issue to our support email which is in the recipient_list but they put another email before the support email in the to-field, a ticket is not created. log message says that the other email is not in the recipient list. Is there any work around to check all the emails in the to-field? |