Set email Priority using sendmail


 
Thread Tools Search this Thread
Operating Systems AIX Set email Priority using sendmail
# 1  
Old 04-01-2013
[Solved] Set email Priority using sendmail

Hi everyone,

I'm trying to send an email on unix using sendmail command. For setting the priority to high I use:

X-Priority: 1

And it works on HP but when I tried it on AIX the email is sent but no priority!!

Anyone can help me

Thanks in advance,
Hiposh
# 2  
Old 04-01-2013
That may be a special feature in HP. When I see an email header
X-something: Some Value

I try to remember that for the SMTP protocol it is probably not known. There are many RFC's that govern mail - and if this is one that is specified in an RFC - so it is part of an accepted, especially mandatory standard, and the supported versions of AIX are not supporting it - submit a PMR.

If it is not a standard, submit a a request for a design change.

And, as it is about SMTP/mail handling - a query in a more "mail" oriented forum may get you better results. - Even ask on HP, as it is a known feature there.

===
A quick of google led me to RFC 6758 - Tunneling of SMTP Message Transfer Priorities
A key phrase - why I do not expect to find any support in AIX, is this:
Quote:
A number of other header fields are already in use, mostly in Message User Agents (MUAs), to convey meanings related to importance or priority of messages. Examples of such header fields are Importance [RFC2156], Priority [RFC2156], and X-Priority (undocumented).
Hope this helps!
# 3  
Old 04-02-2013
Found the solution

Thanks, I found the solution
I changed it to:

Importance: High

And this works on HP and AIX

Moderator's Comments:
Mod Comment edit by bakunin: many thanks for the follow-up. Changed thread title to "Solved".

Last edited by bakunin; 09-09-2013 at 05:06 AM..
# 4  
Old 09-02-2013
Hi is it possible to send complete code to send an email with high priority using sendmail function

Hi, is it possible to send complete code to send an email with high priority using sendmail command in UNIX. I am trying to use and its not working
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Unable to recieve email using sendmail

Hi, Here is my script to send out emails. #!/bin/ksh { print "From: Prod@`hostname`.mycomp.com" print "To: me@mycomp.com" print "MIME-Version: 1.0" print "Content-Type: text/html" print "Subject: Usage Report" print "" print... (2 Replies)
Discussion started by: mohtashims
2 Replies

2. UNIX for Advanced & Expert Users

Need help with sendmail email filtering on FreeBSD

Hi All, Sorry, for the double posting. Don't know how to move to a different forum. I am very new to Unix. I have a test server running FreeBSD 10.1 and SendMail 8.14.9. I need to filter incoming emails based on the sender's email address or domain and forward them to another address on a... (1 Reply)
Discussion started by: simplemind
1 Replies

3. UNIX for Dummies Questions & Answers

nLocal sendmail issues when hostname not set in official domain name

Hi, I'm having issues with sendmail when I try to send host to host mail. I've had to change the "my official domain name" line to mycompany.com to get the mails through the external spam filter, when a mail was sent with hostname.mycompany.com it was blocked. I had to change the Dj macro... (0 Replies)
Discussion started by: elcounto
0 Replies

4. Solaris

mailx/sendmail configuration/set up problem

Hello Good People of Linux World!!! Background: Recent Networking Graduate, thrown in line of fire. For the past couple of days I have been searching online for answers and haven't gotten anywhere regarding Mailx, Sendmail functionality on SunOS 5.9. My dilemma: Mailx / sendmail are... (28 Replies)
Discussion started by: kazmiM
28 Replies

5. UNIX for Dummies Questions & Answers

How to set Subject in Sendmail in Crontab

Hello All, I am trying to send a file through email everyday from one of my Linux (x86_64) system. I've scheduled Sendmail in Crontab like this- 00 8 * * * /usr/sbin/sendmail name@xxx.co.uk < /home/file1.out This entry in crontab is working very fine and I am receiving file file1.out... (10 Replies)
Discussion started by: NARESH1302
10 Replies

6. Red Hat

Set up Sendmail as sending only server

I have set up where my primary fibre optical WAN access does not have any sending SMTP service but my fall-back ADSL service does. However, with most Internet Service Providers, the SMTP service access is "locked" to the IP addresses that the service knows about. Therefore I can not send SMTP... (0 Replies)
Discussion started by: smlunatick
0 Replies

7. Solaris

Outbound email re-direct using Sendmail

I need to reconfigure Sendmail to strip the SMTP email addresses from all email and replace them with a single address used for testing purposes. I have a vended application hosted on Solaris 10 servers. I have access to support the application framework (IBM WebShere Application Server 6.1),... (1 Reply)
Discussion started by: dunkar70
1 Replies

8. UNIX and Linux Applications

Sendmail outgoing email rate

Does anyone know what's Sendmail outgoing email rate? e.g. 1000 outgoing email per minutes. If so, can we modify it? Thanks. :) (1 Reply)
Discussion started by: sunmagic2003
1 Replies

9. HP-UX

Sendmail not submitting Email on '.'

I have several HP/UX nodes running Sendmail 8.13 ...some work fine, some don't. When an Email is coming in, the 'DATA' command never ends. The other side of the connection gets to the point where it enters the '.' on a line by itself, but sendmail doesn't accept it...if fact it keeps on holding... (8 Replies)
Discussion started by: john_exonets
8 Replies

10. Shell Programming and Scripting

need help: how to send email with HIGH priority in shell scripts?

Hello, I know that mail or sendmail can be used to send email in a shell script. Is there any way I can set the priority of emails to send to HIGH? The reason why I want that is because my mobile email sends instant alert SMS's only for incoming emails with HIGH priority. (2 Replies)
Discussion started by: _joshua_
2 Replies
Login or Register to Ask a Question