From: Sebastian B. <sb...@us...> - 2014-02-21 06:34:32
|
Update of /cvsroot/simplemail/simplemail In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv25339 Modified Files: common-sources.mk Added Files: ssl.c ssl.h Log Message: Added common ssl file. --- NEW FILE: ssl.h --- /*************************************************************************** SimpleMail - Copyright (C) 2000 Hynek Schlawack and Sebastian Bauer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***************************************************************************/ /** * @file ssl.h */ #ifndef SM__SSL_H #define SM__SSL_H #endif /* SM__SSL_H */ --- NEW FILE: ssl.c --- /*************************************************************************** SimpleMail - Copyright (C) 2000 Hynek Schlawack and Sebastian Bauer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***************************************************************************/ /** * @file ssl.c */ #include "ssl.h" Index: common-sources.mk =================================================================== RCS file: /cvsroot/simplemail/simplemail/common-sources.mk,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- common-sources.mk 19 Jan 2014 18:26:26 -0000 1.6 +++ common-sources.mk 21 Feb 2014 06:34:30 -0000 1.7 @@ -37,6 +37,7 @@ smintl.c \ smtp.c \ spam.c \ + ssl.c \ status.c \ support_indep.c \ taglines.c \ |