Apple Mac OS X Server Version 10.4 or Later Manual de usuario Pagina 55

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 113
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 54
Chapter 1 Mail Service Setup 55
Learning Sieve Scripting
Sieves complete syntax, commands, and arguments are found in IETF RFC 3028:
www.ietf.org/rfc/rfc3028.txt?number=3028
Other information about Sieve and a sample script archive can be found at:
www.cyrusoft.com/sieve
Sample Sieve Scripts
The following scripts are examples of some common scripts that a user might want to
use.
Vacation Notification Script
#--------
# This is a sample script for vacation rules.
# Read the comments following the pound/hash to find out
# what the script is doing.
#---------
#
# Make sure the vacation extension is used.
require "vacation";
# Define the script as a vacation script
vacation
# Send the vacation response to any given sender only once every seven days
no matter how many messages are sent from him.
:days 7
#For every message sent to these addresses
# Make a message with the following subject
:subject "Out of Office Reply"
# And make the body of the message the following
"I’m out of the office and will return on December 31. I won’t be able to
replay until 6 months after that. Love, Bob.";
# End of Script
Self-Defined Forwarding
#--------
# This is a sample script to illustrate how Sieve could be used
# to let users handle their own mail forwarding needs.
# Read the comments following the pound/hash to find out what the
# script is doing.
#---------
#
# No need to add any extension. 'redirect' is built-in.
# Redirect all my incoming mail to the listed address
redirect "[email protected]";
# But keep a copy of it on the IMAP server
keep;
# End of script
Vista de pagina 54
1 2 ... 50 51 52 53 54 55 56 57 58 59 60 ... 112 113

Comentarios a estos manuales

Sin comentarios