From 4d548dcc67a354e93680e51044ac77d8d6184756 Mon Sep 17 00:00:00 2001 From: Tom Cort Date: Mon, 10 Dec 2007 19:35:39 -0500 Subject: [PATCH] Re-add codename to mail banner. --- smtp.cxx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/smtp.cxx b/smtp.cxx index f8411fe..8837b65 100644 --- a/smtp.cxx +++ b/smtp.cxx @@ -43,14 +43,22 @@ std::string *smtp_get_banner() std::string *banner; banner = new std::string(); + banner->append(" (o_ Powered by inoclam v"); std::string *version; version = new std::string(VERSION); - banner->append(" (o_ Powered by inoclam "); banner->append(version->c_str()); - banner->append("\n"); delete version; + banner->append(" ("); + + std::string *codename; + codename = new std::string(CODENAME); + banner->append(codename->c_str()); + delete codename; + + banner->append(")\n"); + banner->append(" //\\ Developed by the Vermont Department of Taxes\n"); banner->append(" V_/_ Project Homepage: http://www.inoclam.org/\n"); -- 2.11.4.GIT