08-27-2001
Quote:
Originally posted by Andy Hibbins
Hi,
I've just found a nifty looking procmail recipe on redhat's seawolf mailing list
: 0 B
* !^FROM_DAEMON
* .*Content-Disposition:.*attachment
* .*filename="[^\"]+.(bat|com|lnk|pif|vbs)"
{
:0
| echo `date` vb script or sircom >> /root/blocked
:0
/root/mail/blockedmail
}
This script checks for emails with potentially dangerous attachments.
I'm just about to try it out myself
Andy H
Hi Andy,
Can you please tell about the location of the procmail file in which I have to add this code?
Thanks
Kam
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
I use metasend to send an attachment to an email. The attached file has a .csv extension however when the email is received the extension is changed to .att. Does anyone know why ? I need the name to remain as .csv (1 Reply)
Discussion started by: fabbas
1 Replies
2. UNIX for Dummies Questions & Answers
Hello,
I've search the forum, but I cannot find an answer to my specific question. I'm trying to send some files to my professor. Upon his request, I used the following:
tar -cvf vh.tar vh_part1.c vh_part2.c vh_part3.c vh_part4.c vh_sample_run15.txt uuencode vh.tar vh.tar > proj1 mail... (2 Replies)
Discussion started by: venush
2 Replies
3. Shell Programming and Scripting
Hi Friends,
I am using perl on windows environment and i wish to send out an email with body of the mail referring from a text file and attaching a file. Perl should read the body of the mail from a file say bodyofmail.txt and attach a file say attachment.txt. I would like to do both in the same... (0 Replies)
Discussion started by: ganga.dharan
0 Replies
4. Shell Programming and Scripting
Hi all,
I am quite new to Unix shell scripting and I am trying to create a common function to send mail that is capable of adding multiple attachments. The script works if there is only one attachment. But when there is more than one, it just won't work. It gives a syntax message "Usage:... (3 Replies)
Discussion started by: dongzky
3 Replies
5. UNIX for Dummies Questions & Answers
Dear Members,
I am trying to send a file as an attachment from the command prompt in Linux.
I am using the following:
(echo "Find attached Exception Report"; uuencode $DATA_TOP/out/data/$err_rpt_file $err_rpt_file)|/bin/mailx -s "***Exceptions Found" davidk@xyz.com Here err_rpt_file... (2 Replies)
Discussion started by: sandeep_1105
2 Replies
6. Shell Programming and Scripting
Hi Fellas,
I have a script that queries a sybase DB through isql and appends to a file, say file.csv
I want to use the mail command in the shell script to email the file to me. i tried the following command but it doesn't work. can any one suggest whats wrong here. Note that i need the file... (2 Replies)
Discussion started by: Irishboy24
2 Replies
7. Shell Programming and Scripting
Hi,
Request you to please help on my issue.
My issue is: We are able to send the log files as an email attachment. We are able to get the attachment in our inbox. But when we try to see in web mail, instead of the attachment, junk characters are displaying.
Appreciate your help.
Regards,... (10 Replies)
Discussion started by: gi.srinivas
10 Replies
8. Shell Programming and Scripting
Hello ,
I am trying to send an email with two attachments . I have tried all previous suggestion in this forum but none worked. I could send one attachment in an email by
uuencode $file "$file" | mailx -m -s "File" xxx@xx.com
but unable to send multiple attachments .
I have tried
... (8 Replies)
Discussion started by: RaviTej
8 Replies
9. Shell Programming and Scripting
Hi,
Im having a bit of an issue with using the uuencode command and sending out an email.
My aim is to send an email out which has a body and also have attachments. Currently I can either get one or the other and not both on the same email.
uuencode... (4 Replies)
Discussion started by: 02JayJay02
4 Replies
10. HP-UX
HP-UX mbhp7640 B.11.31 U ia64 4294967295 unlimited-user license
Our database builds a MIME compliant html email, then cats that to sendmail - no problem.
Due to horrible issues with the native uuencode, we long ago began using uuenview to encode our attachments - no problem. An example is... (1 Reply)
Discussion started by: bubba77
1 Replies
LEARN ABOUT DEBIAN
rt::client::rest::attachment
RT::Client::REST::Attachment(3pm) User Contributed Perl Documentation RT::Client::REST::Attachment(3pm)
NAME
RT::Client::REST::Attachment -- this object represents an attachment.
SYNOPSIS
my $attachments = $ticket->attachments;
my $count = $attachments->count;
print "There are $count attachments.
";
my $iterator = $attachments->get_iterator;
while (my $att = &$iterator) {
print "Id: ", $att->id, "; Subject: ", $att->subject, "
";
}
DESCRIPTION
An attachment is a second-class citizen, as it does not exist (at least from the current REST protocol implementation) by itself. At the
moment, it is always associated with a ticket (see parent_id attribute). Thus, you will rarely retrieve an attachment by itself; instead,
you should use "attachments()" method of RT::Client::REST::Ticket object to get an iterator for all attachments for that ticket.
ATTRIBUTES
id
Numeric ID of the attachment.
creator_id
Numeric ID of the user who created the attachment.
parent_id
Numeric ID of the object the attachment is associated with. This is not a proper attribute of the attachment as specified by REST -- it
is simply to store the ID of the RT::Client::REST::Ticket object this attachment belongs to.
subject
Subject of the attachment.
content_type
Content type.
file_name
File name (if any).
transaction_id
Numeric ID of the RT::Client::REST::Transaction object this attachment is associated with.
message_id
Message ID.
created
Time when the attachment was created
content
Actual content of the attachment.
headers
Headers (not parsed), if any.
parent
Parent (not sure what this is yet).
content_encoding
Content encoding, if any.
METHODS
RT::Client::REST::Attachment is a read-only object, so you cannot "store()" it. Also, because it is a second-class citizen, you cannot
"search()" or "count()" it -- use "attachments()" method provided by RT::Client::REST::Ticket.
retrieve
To retrieve an attachment, attributes id and parent_id must be set.
INTERNAL METHODS
rt_type
Returns 'attachment'.
SEE ALSO
RT::Client::REST::Ticket, RT::Client::REST::SearchResult.
AUTHOR
Dmitri Tikhonov <dtikhonov@yahoo.com>
LICENSE
Perl license with the exception of RT::Client::REST, which is GPLed.
perl v5.14.2 2011-12-27 RT::Client::REST::Attachment(3pm)