[vhffs-dev] [894] I love when I am right, even the former vhffs4 developer scrambled mailing and mailinglist ;-) |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 894
Author: gradator
Date: 2007-09-10 03:19:45 +0000 (Mon, 10 Sep 2007)
Log Message:
-----------
I love when I am right, even the former vhffs4 developer scrambled mailing and mailinglist ;-)
Modified Paths:
--------------
trunk/vhffs-panel/Makefile.am
Removed Paths:
-------------
trunk/vhffs-panel/admin/mailinglist/mailing_submit.pl
Modified: trunk/vhffs-panel/Makefile.am
===================================================================
--- trunk/vhffs-panel/Makefile.am 2007-09-10 03:15:33 UTC (rev 893)
+++ trunk/vhffs-panel/Makefile.am 2007-09-10 03:19:45 UTC (rev 894)
@@ -43,7 +43,6 @@
admin/mail/show.pl \
admin/mailinglist/index.pl \
admin/mailinglist/list.pl \
- admin/mailinglist/mailing_submit.pl \
admin/mailinglist/search.pl \
admin/mysql/edit_submit.pl \
admin/mysql/edit.pl \
Deleted: trunk/vhffs-panel/admin/mailinglist/mailing_submit.pl
===================================================================
--- trunk/vhffs-panel/admin/mailinglist/mailing_submit.pl 2007-09-10 03:15:33 UTC (rev 893)
+++ trunk/vhffs-panel/admin/mailinglist/mailing_submit.pl 2007-09-10 03:19:45 UTC (rev 894)
@@ -1,96 +0,0 @@
-#!%PERL% -w
-# Copyright (c) vhffs project and its contributors
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in
-# the documentation and/or other materials provided with the
-# distribution.
-#3. Neither the name of vhffs nor the names of its contributors
-# may be used to endorse or promote products derived from this
-# software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-#"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-#LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-#FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-#COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-#INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-#BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-#LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-#CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
-# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-
-
-use POSIX qw(locale_h);
-use HTML::Template;
-use locale;
-use Locale::gettext;
-use CGI;
-use CGI::Session;
-use strict;
-
-use lib '%VHFFS_LIB_DIR%';
-use Vhffs::User;
-use Vhffs::Group;
-use Vhffs::Main;
-use Vhffs::Panel::Main;
-use Vhffs::Panel::Menu;
-use Vhffs::Constants;
-use Vhffs::Misc::Mailings;
-
-my $panel = new Vhffs::Panel::Main();
-exit 0 unless $panel;
-my $session = $panel->get_session;
-exit 0 unless $session;
-
-my $vhffs = $panel->{'vhffs'};
-my $maintemplate = $panel->{'template'};
-my $user = $panel->{'user'};
-#my $group = $panel->{'group'};
-my $projectname = $session->param("project");
-my $cgi = $panel->{'cgi'};
-my $subject = $cgi->param("SUBJECT");
-my $body = $cgi->param("BODY");
-my $template;
-
-my $templatedir = $vhffs->get_config->get_templatedir;
-
-my $message;
-
-$template = new HTML::Template( filename => $templatedir."/panel/misc/simplemsg.tmpl" );
-
-if( $user->is_admin != 1 )
-{
- $message = gettext( "You are not allowed to see it");
-}
-elsif( ( ! defined $subject ) || ( ! defined $body ) )
-{
- $message = gettext( "CGI Error !");
-}
-else
-{
- if( ( my $retour = Vhffs::Misc::Mailings::add_mailing( $vhffs , $subject , $body ) ) < 0 )
- {
- $message = gettext( "An error occured while creating the message in the database" );
- }
- else
- {
- $message = gettext( "Mail successfully sent" );
- }
-
-}
-
-$template->param( MESSAGE => $message );
-
-$panel->build( $template );
-$panel->display;
-