aboutsummaryrefslogtreecommitdiffstats
path: root/packages/stunnel.xml
Commit message (Collapse)AuthorAgeFilesLines
* Rename the sync_package function to sync_package_filename()Scott Ullrich2005-03-021-29/+29
|
* * Add config locking and remounting.Colin Smith2005-02-261-0/+4
| | | | | * FreeRADIUS typo correction. * Change <name> in powerdns.xml: nmap -> powerdns
* Update packages to use new <version></version> tags.Colin Smith2005-02-211-0/+1
|
* Add <title>Scott Ullrich2005-02-191-0/+1
|
* Do not call ow.Scott Ullrich2005-01-091-2/+0
|
* Clean up install and deinstallScott Ullrich2005-01-051-2/+5
|
* Add configfile tagScott Ullrich2004-12-291-0/+1
|
* Start stunnel after changes using rc.d script.Scott Ullrich2004-12-221-1/+1
|
* Forgot to mv the sample stunnel startup script and chmod it to 555.Scott Ullrich2004-12-221-0/+2
|
* Use <?xml version="1.0" encoding="utf-8" ?>Scott Ullrich2004-12-221-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <packagegui> <name>stunnel</name> <!-- Menu is where this packages menu will appear --> <menu> <name>STunnel</name> <tooltiptext>The stunnel program is designed to work as an SSL encryption wrapper between remote client and local (inetd-startable) or remote server. It can be used to add SSL functionality to commonly used inetd daemons like POP2, POP3, and IMAP servers without any changes in the programs' code. It will negotiate an SSL connection using the OpenSSL or SSLeay libraries. It calls the underlying crypto libraries, so stunnel supports whatever cryptographic algorithms you compiled into your crypto package.</tooltiptext> <section>Services</section> </menu> <!-- configpath gets expanded out automatically and config items will be stored in that location --> <configpath>['installedpackages']['package']['$packagename']['configuration']</configpath> <!-- adddeleteeditpagefields items will appear on the first page where you can add / delete or edit items. An example of this would be the nat page where you add new nat redirects --> <adddeleteeditpagefields> <columnitem> <fielddescr>Description</fielddescr> <fieldname>description</fieldname> </columnitem> <columnitem> <fielddescr>Listen on IP</fielddescr> <fieldname>localip</fieldname> </columnitem> <columnitem> <fielddescr>Listen on Port</fielddescr> <fieldname>localport</fieldname> </columnitem> <columnitem> <fielddescr>Redirects to IP</fielddescr> <fieldname>redirectip</fieldname> </columnitem> <columnitem> <fielddescr>Redirects to Port</fielddescr> <fieldname>redirectport</fieldname> </columnitem> </adddeleteeditpagefields> <!-- fields gets invoked when the user adds or edits a item. the following items will be parsed and rendered for the user as a gui with input, and selectboxes. --> <fields> <field> <fielddescr>Description</fielddescr> <fieldname>description</fieldname> <description>Enter a description for this redirection.</description> <type>input</type> </field> <field> <fielddescr>Listen on IP</fielddescr> <fieldname>localip</fieldname> <description>Enter the local IP address to bind this redirection to.</description> <type>input</type> </field> <field> <fielddescr>Listen on port</fielddescr> <fieldname>localport</fieldname> <description>Enter the local port to bind this redirection to.</description> <type>input</type> </field> <field> <fielddescr>Redirects to IP</fielddescr> <fieldname>redirectip</fieldname> <description>Enter the local IP address to redirect this to.</description> <type>input</type> </field> <field> <fielddescr>Redirects to Port</fielddescr> <fieldname>redirectport</fieldname> <description>Enter the local port to rediect to.</description> <type>input</type> </field> </fields> <custom_php_install_command> system("mkdir /var/tmp/stunnel 2>/dev/null"); system("/usr/bin/openssl req -new -x509 -days 365 -nodes -out /usr/local/etc/stunnel/stunnel.pem -keyout /usr/local/etc/stunnel/stunnel.pem"); system("chmod a-r /usr/local/etc/stunnel/stunnel.pem"); system("chmod u+r /usr/local/etc/stunnel/stunnel.pem"); system("mkdir -p /var/tmp/stunnel/var/tmp"); system("chmod a+rw /var/tmp/stunnel/var/tmp/."); </custom_php_install_command> <custom_php_deinstall_command> system("rm -rf /var/tmp/stunnel 2>/dev/null"); system("rm -rf /usr/local/etc/stunnel/stunnel.pem"); </custom_php_deinstall_command> <custom_add_php_command_late> $fout = fopen("/usr/local/etc/stunnel/stunnel.conf","w"); fwrite($fout, "cert = /usr/local/etc/stunnel/mail.pem \n"); fwrite($fout, "chroot = /var/tmp/stunnel \n"); fwrite($fout, "setuid = stunnel \n"); fwrite($fout, "setgid = stunnel \n"); foreach($config['installedpackages']['stunnel']['config'] as $pkgconfig) { fwrite($fout, "\n[" . $pkgconfig['description'] . "]\n"); fwrite($fout, "accept = " . $pkgconfig['localip'] . ":" . $pkgconfig['localport'] . "\n"); fwrite($fout, "connect = " . $pkgconfig['redirectip'] . ":" . $pkgconfig['redirectport'] . "\n"); fwrite($fout, "TIMEOUTclose = 0\n\n"); } fclose($fout); system("/usr/bin/killall stunnel 2>/dev/null"); system("/usr/local/sbin/stunnel 2>/dev/null"); </custom_add_php_command_late> </packagegui>
* Stunnel setup commands.Scott Ullrich2004-12-221-5/+10
|
* Add stunnel package!Scott Ullrich2004-12-221-0/+93