aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2004-12-17 20:12:31 +0000
committerWojciech Polak <polak@gnu.org>2004-12-17 20:12:31 +0000
commitb09b0a9c95be30d0466b7b1a6985beca75d06082 (patch)
tree7c2e6b21716660cf41e4aaefd03dcad919603004
parentc7e30e15045617ab161cd2837b1f52e0d0b580c2 (diff)
downloadanubis-b09b0a9c95be30d0466b7b1a6985beca75d06082.tar.gz
anubis-b09b0a9c95be30d0466b7b1a6985beca75d06082.tar.bz2
Updated
-rwxr-xr-xbuild/specgen.sh24
-rw-r--r--doc/anubis.114
-rw-r--r--examples/anubis.scm2
-rw-r--r--guile/entire-msg.scm2
-rw-r--r--guile/remailer.scm4
-rw-r--r--guile/rot-13.scm2
-rwxr-xr-xscripts/redhat.init2
-rw-r--r--src/main.c2
8 files changed, 26 insertions, 26 deletions
diff --git a/build/specgen.sh b/build/specgen.sh
index ed08e86..3452065 100755
--- a/build/specgen.sh
+++ b/build/specgen.sh
@@ -1,7 +1,7 @@
#!/bin/sh
#
# This file is part of GNU Anubis.
-# Copyright (C) 2001, 2002, 2003 The Anubis Team.
+# Copyright (C) 2001, 2002, 2003, 2004 The Anubis Team.
#
# GNU Anubis is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
#
cat <<EOF
-Summary: An outgoing mail processor and the SMTP tunnel.
+Summary: An SMTP message submission daemon.
Name: anubis
Version: $1
Release: 1
@@ -36,15 +36,13 @@ Requires: openssl pidentd
Prereq: /sbin/chkconfig /sbin/install-info /usr/sbin/useradd /usr/sbin/userdel
%description
-GNU Anubis is an outgoing mail processor. It goes between the MUA (Mail User
-Agent) and the MTA (Mail Transport Agent), and can perform on the fly various
-sorts of processing and conversion on the outgoing mail in accord with the
-sender's specified rules, based on a highly configurable regular expressions
-system. It operates as a proxy server, independently from mail user agents.
-GNU Anubis can edit outgoing mail headers, encrypt and/or sign mail with the
-GNU Privacy Guard, build secure SMTP tunnels (Simple Mail Transport Protocol)
-using the TLS/SSL encryption even if your mail user agent doesn't support it,
-or tunnel a connection through a SOCKS proxy server.
+GNU Anubis is an SMTP message submission daemon. It represents an intermediate
+layer between mail user agent (MUA) and mail transport agent (MTA), receiving
+messages from MUA, applying to them a set of predefined changes and finally
+inserting modified messages into MTA routing network. The set of changes
+applied to a message is configurable on a system-wide and per-user basis. The
+built-in configuration language used for defining sets of changes allows for
+considerable flexibility and is easily extensible.
%define _initdir /etc/init.d
%define _unprivileged anubis.unprivileged
@@ -99,10 +97,10 @@ rm -f /usr/man/man1/anubis.1*
%attr(0644,root,root) /usr/share/locale/*/*/anubis.mo
%changelog
-* Tue Dec 03 2002 Wojciech Polak <polak@gnu.org>
+* Tue Dec 03 2002 Wojciech Polak
- removed default system configuration file.
-* Fri Nov 01 2002 Wojciech Polak <polak@gnu.org>
+* Fri Nov 01 2002 Wojciech Polak
- updated to GNU. Now it's GNU Anubis!
# EOF
diff --git a/doc/anubis.1 b/doc/anubis.1
index b700caa..30ab375 100644
--- a/doc/anubis.1
+++ b/doc/anubis.1
@@ -3,7 +3,7 @@
.\"
.TH anubis 1 "" "" "GNU Anubis"
.SH NAME
-GNU Anubis - an outgoing mail processor and the SMTP tunnel.
+GNU Anubis -- an SMTP message submission daemon.
.SH SYNOPSIS
.BI "anubis"
[options]
@@ -11,11 +11,13 @@ GNU Anubis - an outgoing mail processor and the SMTP tunnel.
.SH DESCRIPTION
.B GNU Anubis
-is an outgoing mail processor. It goes between the MUA (Mail User
-Agent) and the MTA (Mail Transport Agent), and can perform on the fly various
-sorts of processing and conversion on the outgoing mail in accord with the
-sender's specified rules, based on a highly configurable regular expressions
-system. It operates as a proxy server, independently from mail user agents.
+is an SMTP message submission daemon. It represents an intermediate
+layer between mail user agent (MUA) and mail transport agent (MTA), receiving
+messages from MUA, applying to them a set of predefined changes and finally
+inserting modified messages into MTA routing network. The set of changes
+applied to a message is configurable on a system-wide and per-user basis. The
+built-in configuration language used for defining sets of changes allows for
+considerable flexibility and is easily extensible.
.SH THE GNU ANUBIS MANUAL
diff --git a/examples/anubis.scm b/examples/anubis.scm
index 7f6968b..3a8d36c 100644
--- a/examples/anubis.scm
+++ b/examples/anubis.scm
@@ -1,4 +1,4 @@
-;;;; GNU Anubis -- an outgoing mail processor and the SMTP tunnel.
+;;;; GNU Anubis -- an SMTP message submission daemon.
;;;; Copyright (C) 2003 The Anubis Team.
;;;;
;;;; GNU Anubis is free software; you can redistribute it and/or modify
diff --git a/guile/entire-msg.scm b/guile/entire-msg.scm
index c72ae61..25755e1 100644
--- a/guile/entire-msg.scm
+++ b/guile/entire-msg.scm
@@ -1,4 +1,4 @@
-;;;; GNU Anubis -- an outgoing mail processor and the SMTP tunnel.
+;;;; GNU Anubis -- an SMTP message submission daemon.
;;;; Copyright (C) 2003, 2004 The Anubis Team.
;;;;
;;;; GNU Anubis is free software; you can redistribute it and/or modify
diff --git a/guile/remailer.scm b/guile/remailer.scm
index a31512c..838620a 100644
--- a/guile/remailer.scm
+++ b/guile/remailer.scm
@@ -1,4 +1,4 @@
-;;;; GNU Anubis -- an outgoing mail processor and the SMTP tunnel.
+;;;; GNU Anubis -- an SMTP message submission daemon.
;;;; Copyright (C) 2003 The Anubis Team.
;;;;
;;;; GNU Anubis is free software; you can redistribute it and/or modify
@@ -64,4 +64,4 @@ Keyword arguments are:
(cons #t #t)
(cons #t (string-append "::\n" pfx "\n" body)))))
-;;;; End of remailer.scm \ No newline at end of file
+;;;; End of remailer.scm
diff --git a/guile/rot-13.scm b/guile/rot-13.scm
index 15c9405..beb9ea0 100644
--- a/guile/rot-13.scm
+++ b/guile/rot-13.scm
@@ -1,4 +1,4 @@
-;;;; GNU Anubis -- an outgoing mail processor and the SMTP tunnel.
+;;;; GNU Anubis -- an SMTP message submission daemon.
;;;; Copyright (C) 2003 The Anubis Team.
;;;;
;;;; GNU Anubis is free software; you can redistribute it and/or modify
diff --git a/scripts/redhat.init b/scripts/redhat.init
index d304fde..06e5e49 100755
--- a/scripts/redhat.init
+++ b/scripts/redhat.init
@@ -1,7 +1,7 @@
#!/bin/sh
#
# chkconfig: 2345 81 45
-# description: An outgoing mail processor and the SMTP tunnel.
+# description: An SMTP message submission daemon.
# processname: anubis
# config: /etc/anubisrc
# author: The Anubis Team
diff --git a/src/main.c b/src/main.c
index eac607d..a98b4dd 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,5 +1,5 @@
/*
- GNU Anubis v3.9.96 -- an outgoing mail processor and the SMTP tunnel.
+ GNU Anubis v4.0 -- an SMTP message submission daemon.
Copyright (C) 2001, 2002, 2003, 2004 The Anubis Team.
GNU Anubis is free software; you can redistribute it and/or modify

Return to:

Send suggestions and report system problems to the System administrator.