From aaad67d3fbc54b9503ecb670e28621bc584e7a4c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 24 Oct 2005 15:20:57 +0000 Subject: [PATCH] * serv_listsub.c: web subscription/confirmation address no longer has http:// prepended to it. This means that clients now must supply that. This was done because we can no longer assume http -- it was breaking on https. --- citadel/ChangeLog | 5 +++++ citadel/serv_listsub.c | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index fde3c13be..67f64ccec 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 24 11:19:47 EDT 2005 ajc +* serv_listsub.c: web subscription/confirmation address no longer has http:// + prepended to it. This means that clients now must supply that. This was + done because we can no longer assume http -- it was breaking on https. + Sun Oct 23 23:28:23 EDT 2005 ajc * "day start" and "day end" preferences for calendar day view. diff --git a/citadel/serv_listsub.c b/citadel/serv_listsub.c index 9154e6011..c838a97f7 100644 --- a/citadel/serv_listsub.c +++ b/citadel/serv_listsub.c @@ -3,7 +3,7 @@ * * This module handles self-service subscription/unsubscription to mail lists. * - * Copyright (C) 2002 by Art Cancro and others. + * Copyright (C) 2002-2005 by Art Cancro and others. * This code is released under the terms of the GNU General Public License. * */ @@ -163,8 +163,8 @@ void do_subscribe(char *room, char *email, char *subtype, char *webpage) { "Someone (probably you) has submitted a request to subscribe\n" "<%s> to the %s mailing list.

\n" "Please click here to confirm this request:
\n" - "" - "http://%s?room=%s&token=%s&cmd=confirm

\n" + "" + "%s?room=%s&token=%s&cmd=confirm

\n" "If this request has been submitted in error and you do not\n" "wish to receive the '%s' mailing list, simply do nothing,\n" "and you will not receive any further mailings.\n" @@ -276,8 +276,8 @@ void do_unsubscribe(char *room, char *email, char *webpage) { "to unsubscribe\n" "<%s> from the %s mailing list.

\n" "Please click here to confirm this request:
\n" - "" - "http://%s?room=%s&token=%s&cmd=confirm

\n" + "" + "%s?room=%s&token=%s&cmd=confirm

\n" "If this request has been submitted in error and you do\n" "not wish to unsubscribe from the " "'%s' mailing list, simply do nothing,\n" -- 2.39.2