summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/smtpd/aliases.c2
-rw-r--r--usr.sbin/smtpd/atomic.c2
-rw-r--r--usr.sbin/smtpd/config.c2
-rw-r--r--usr.sbin/smtpd/control.c2
-rw-r--r--usr.sbin/smtpd/debug.c2
-rw-r--r--usr.sbin/smtpd/dns.c2
-rw-r--r--usr.sbin/smtpd/forward.c2
-rw-r--r--usr.sbin/smtpd/lka.c2
-rw-r--r--usr.sbin/smtpd/map.c2
-rw-r--r--usr.sbin/smtpd/mda.c2
-rw-r--r--usr.sbin/smtpd/mfa.c2
-rw-r--r--usr.sbin/smtpd/mta.c2
-rw-r--r--usr.sbin/smtpd/parse.y2
-rw-r--r--usr.sbin/smtpd/queue.c2
-rw-r--r--usr.sbin/smtpd/smtp.c2
-rw-r--r--usr.sbin/smtpd/smtp_session.c2
-rw-r--r--usr.sbin/smtpd/smtpd.c2
-rw-r--r--usr.sbin/smtpd/smtpd.conf2
-rw-r--r--usr.sbin/smtpd/smtpd.h2
-rw-r--r--usr.sbin/smtpd/ssl.c2
-rw-r--r--usr.sbin/smtpd/store.c2
21 files changed, 42 insertions, 0 deletions
diff --git a/usr.sbin/smtpd/aliases.c b/usr.sbin/smtpd/aliases.c
index 2e66476d484..df209deb5ea 100644
--- a/usr.sbin/smtpd/aliases.c
+++ b/usr.sbin/smtpd/aliases.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: aliases.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*
diff --git a/usr.sbin/smtpd/atomic.c b/usr.sbin/smtpd/atomic.c
index ce245fedaad..a23ea9af9c9 100644
--- a/usr.sbin/smtpd/atomic.c
+++ b/usr.sbin/smtpd/atomic.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: atomic.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Charles Longeau <chl@openbsd.org>
*
diff --git a/usr.sbin/smtpd/config.c b/usr.sbin/smtpd/config.c
index 49e5ebbd0a6..4ee545be0ba 100644
--- a/usr.sbin/smtpd/config.c
+++ b/usr.sbin/smtpd/config.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: config.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
*
diff --git a/usr.sbin/smtpd/control.c b/usr.sbin/smtpd/control.c
index 6a34df67fdc..82ddeb72315 100644
--- a/usr.sbin/smtpd/control.c
+++ b/usr.sbin/smtpd/control.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: control.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
diff --git a/usr.sbin/smtpd/debug.c b/usr.sbin/smtpd/debug.c
index 73f8b0f64e2..90d827081f6 100644
--- a/usr.sbin/smtpd/debug.c
+++ b/usr.sbin/smtpd/debug.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: debug.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*
diff --git a/usr.sbin/smtpd/dns.c b/usr.sbin/smtpd/dns.c
index 08cabed9813..63de46a4bfd 100644
--- a/usr.sbin/smtpd/dns.c
+++ b/usr.sbin/smtpd/dns.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: dns.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*
diff --git a/usr.sbin/smtpd/forward.c b/usr.sbin/smtpd/forward.c
index a1d510f9b4b..43a17ed8116 100644
--- a/usr.sbin/smtpd/forward.c
+++ b/usr.sbin/smtpd/forward.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: forward.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*
diff --git a/usr.sbin/smtpd/lka.c b/usr.sbin/smtpd/lka.c
index f33b4cf5eb1..8d18a2b5ba4 100644
--- a/usr.sbin/smtpd/lka.c
+++ b/usr.sbin/smtpd/lka.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: lka.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
diff --git a/usr.sbin/smtpd/map.c b/usr.sbin/smtpd/map.c
index 2f72a4a434a..4afbbb0698f 100644
--- a/usr.sbin/smtpd/map.c
+++ b/usr.sbin/smtpd/map.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: map.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*
diff --git a/usr.sbin/smtpd/mda.c b/usr.sbin/smtpd/mda.c
index 5eaaf781c88..ff2b62519ee 100644
--- a/usr.sbin/smtpd/mda.c
+++ b/usr.sbin/smtpd/mda.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: mda.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/mfa.c b/usr.sbin/smtpd/mfa.c
index 5bfed1f68fe..aafacf26838 100644
--- a/usr.sbin/smtpd/mfa.c
+++ b/usr.sbin/smtpd/mfa.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: mfa.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/mta.c b/usr.sbin/smtpd/mta.c
index 03bb668bea6..fa117e63380 100644
--- a/usr.sbin/smtpd/mta.c
+++ b/usr.sbin/smtpd/mta.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: mta.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y
index e8b6ca71cb5..d5e06b8fb5a 100644
--- a/usr.sbin/smtpd/parse.y
+++ b/usr.sbin/smtpd/parse.y
@@ -1,3 +1,5 @@
+/* $OpenBSD: parse.y,v 1.3 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/queue.c b/usr.sbin/smtpd/queue.c
index 3938c01bfaf..6efca7caa04 100644
--- a/usr.sbin/smtpd/queue.c
+++ b/usr.sbin/smtpd/queue.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: queue.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/smtp.c b/usr.sbin/smtpd/smtp.c
index 01f06953648..ae6dc27d6fd 100644
--- a/usr.sbin/smtpd/smtp.c
+++ b/usr.sbin/smtpd/smtp.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: smtp.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/smtp_session.c b/usr.sbin/smtpd/smtp_session.c
index cfca2f0a99e..616d9742406 100644
--- a/usr.sbin/smtpd/smtp_session.c
+++ b/usr.sbin/smtpd/smtp_session.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: smtp_session.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c
index 3ff28f93c3b..e3aa8cc1e31 100644
--- a/usr.sbin/smtpd/smtpd.c
+++ b/usr.sbin/smtpd/smtpd.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: smtpd.c,v 1.3 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/smtpd.conf b/usr.sbin/smtpd/smtpd.conf
index 0797d5e93c5..25ee9dd8dd7 100644
--- a/usr.sbin/smtpd/smtpd.conf
+++ b/usr.sbin/smtpd/smtpd.conf
@@ -1,3 +1,5 @@
+# $OpenBSD: smtpd.conf,v 1.2 2008/11/05 12:14:45 sobrado Exp $
+
listen on localhost port 25
#ssmtp listen on localhost port 465
hostname localhost
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index 6fa1af2d741..090b68d4a77 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: smtpd.h,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
diff --git a/usr.sbin/smtpd/ssl.c b/usr.sbin/smtpd/ssl.c
index 28a5284d250..73e1fcc1043 100644
--- a/usr.sbin/smtpd/ssl.c
+++ b/usr.sbin/smtpd/ssl.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: ssl.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2008 Reyk Floeter <reyk@openbsd.org>
diff --git a/usr.sbin/smtpd/store.c b/usr.sbin/smtpd/store.c
index e42ef7c81e6..5f55f059439 100644
--- a/usr.sbin/smtpd/store.c
+++ b/usr.sbin/smtpd/store.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: store.c,v 1.3 2008/11/05 12:14:45 sobrado Exp $ */
+
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
*