Vacation message character encoding


 
Thread Tools Search this Thread
Operating Systems AIX Vacation message character encoding
# 1  
Old 03-24-2009
Vacation message character encoding

I am trying to send a vacation message (.vacation.msg) from my AIX 5.3 server. Message is UTF-8 characters. Some email clients (like apple mail) have no problems displaying the correct text, however, some, like Windows Outlook, display garbage.

Is there a way of forcing the client to use proper encoding to read/display the message?
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

How Much Vacation Do You Take? | UNIX.com Community | Annual Vacation (YouTube)

Here is another simple YT video co-produced with our video partner. How Much Vacation Do You Take? | UNIX.com Community | Annual Vacation https://youtu.be/MSy553qS654 Background sound track is called "Caribbean Paradise" Sounds like something wisecracker would have played in one... (0 Replies)
Discussion started by: Neo
0 Replies

2. Solaris

View file encoding then change encoding.

Hi all!! I´m using command file -i myfile.xml to validate XML file encoding, but it is just saying regular file . I´m expecting / looking an output as UTF8 or ANSI / ASCII Is there command to display the files encoding? Thank you! (2 Replies)
Discussion started by: mrreds
2 Replies

3. Solaris

connect to ILOM via ssh character encoding

Hello all, I am connecting to ILOM using ssh client (putty) but when RedHat start booting everything look chinese for me... Probably i have to configure the character set, i tried also utf-8 but the issue remain. Any idea? Thanks in advance (0 Replies)
Discussion started by: @dagio
0 Replies

4. Shell Programming and Scripting

extra character with iconv encoding

hey, I am trying to convert a sample russian encoding file to English encoding using iconv utility. Its almost done but with each converted character i am getting one extra character which must not come. my sample Russian text is test.txt А Б В Г Д Е Ж З И Й К ~ and script which i... (4 Replies)
Discussion started by: peeyushgehlot
4 Replies

5. Shell Programming and Scripting

How to find the file encoding and updating the file encoding?

Hi, I am beginner to Unix. My requirement is to validate the encoding used in the incoming file(csv,txt).If it is encoded with UTF-8 format,then the file should remain as such otherwise i need to chnage the encoding to UTF-8. Please advice me how to proceed on this. (7 Replies)
Discussion started by: cnraja
7 Replies

6. HP-UX

how to find the character encoding of a file in hp_ux

how to find the character encoding of a file in hp_ux (1 Reply)
Discussion started by: alokjyotibal
1 Replies

7. UNIX for Dummies Questions & Answers

"vi" text editor character encoding?

Hi! I've got a shell account on a FreeBSD machine. It doesn't have 'vim' installed, but only the original 'vi' text editor ("Version 1.79 (10/23/96) The CSRG, University of California, Berkeley.") So, in PuTTY I've chosen "UTF-8 translation" to have my non-english characters appear correctly.... (2 Replies)
Discussion started by: Gew
2 Replies

8. UNIX for Dummies Questions & Answers

character encoding in Fedora6

Hello, After upgrading the OS from Fedora4 to Fedora6, the firefox view>character encoding doesn't work anymore. None of the foreign characters can be displayed, no matter what character encoding to select. Any suggestions? Thanks, bsky :confused (1 Reply)
Discussion started by: bsky
1 Replies
Login or Register to Ask a Question
VACATION(1)						    BSD General Commands Manual 					       VACATION(1)

NAME
vacation -- return ``I am not here'' indication SYNOPSIS
vacation -i [-r interval] vacation -l vacation -x vacation [-a alias] [-d] [-f db] [-m msg] [-j] [-z] login DESCRIPTION
vacation returns a message to the sender of a message telling them that you are currently not reading your mail. The intended use is in a .forward file. For example, your .forward file might have: eric, "|/usr/bin/vacation -a allman eric" which would send messages to you (assuming your login name was eric) and reply to any messages for ``eric'' or ``allman''. Available options: -a alias Handle messages for alias in the same manner as those received for the user's login name. -d Print messages to stderr instead of syslog. -f db Uses db as the database file. -m msg Uses msg as the message file. -j Reply to the message even if our address cannot be found in the ``To:'' or ``Cc:'' headers. This option is very dangerous and should be used with extreme care. -z Set the envelope sender of the reply message to ``<>''. -i Initialize the vacation database files. It should be used before you modify your .forward file. -r Set the reply interval to interval days. The default is one week. An interval of ``0'' means that a reply is sent to each message, and an interval of ``infinite'' (actually, any non-numeric character) will never send more than one reply. It should be noted that intervals of ``0'' are quite dangerous, as it allows mailers to get into ``I am on vacation'' loops. -x Reads a list of addresses from standard input, one per line, and adds them to the vacation database. Mail coming from these excluded addresses will not get a reply. Whole domains can be excluded using the syntax ``@domain''. -l Print the contents of the vacation database files. For each entry, the address the reply has been sent to and the associated time will be printed to standard output. When started without arguments, vacation will guide the user through the configuration process. No message will be sent unless login (or an alias supplied using the -a option) is part of either the ``To:'' or ``Cc:'' headers of the mail. No messages from ``???-REQUEST'', ``Postmaster'', ``UUCP'', ``MAILER'', or ``MAILER-DAEMON'' will be replied to (where these strings are case insensitive) nor is a notification sent if a ``Precedence: bulk'', ``Precedence: list'' or ``Precedence: junk'' line is included in the mail headers. The people who have sent you messages are maintained as a db(3) database in the file .vacation.db in your home directory. vacation expects a file .vacation.msg, in your home directory, containing a message to be sent back to each sender. It should be an entire message (including headers). For example, it might contain: From: eric@CS.Berkeley.EDU (Eric Allman) Subject: I am on vacation Delivered-By-The-Graces-Of: The Vacation program Precedence: bulk I am on vacation until July 22. If you have something urgent, please contact Keith Bostic <bostic@CS.Berkeley.EDU>. --eric Any occurrence of the string $SUBJECT in .vacation.msg will be replaced by the subject of the message that triggered the vacation program. vacation reads the incoming message from standard input, checking the message headers for either the UNIX ``From'' line or a ``Return-Path'' header to determine the sender. If both are present the sender from the ``Return-Path'' header is used. Sendmail(8) includes this ``From'' line automatically. Fatal errors, such as calling vacation with incorrect arguments, or with non-existent logins, are logged on the standard error output and in the system log file, using syslog(3). DIAGNOSTICS
The vacation utility exits 0 on success, and >0 if an error occurs. FILES
~/.vacation.db database file ~/.vacation.msg message to send ~/.forward SEE ALSO
aliases(5,) sendmail(8), syslogd(8) HISTORY
The vacation command appeared in 4.3BSD. AUTHOR
vacation was developed by Eric Allman and the University of California, Berkeley in 1983. This version is maintained by Marco d'Itri <md@linux.it> and contains code taken from the three free BSD and some patches applied to a linux port. Linux June 15, 2003 Linux