Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update config/squidGuard/squidguard_configurator.inc | Alexander Wilke | 2012-10-25 | 1 | -5/+5 |
| | | | | | | | squidguard: "url_rewrite_children" replaces "redirect_children" in squid 2.6 and newer versions. Increased default value up to 5. http://www.squid-cache.org/Versions/v2/2.7/cfgman/url_rewrite_children.html "redirector_bypass" is by default off which disallows to bypass ACLs. http://www.squid-cache.org/Versions/v2/2.7/cfgman/redirector_bypass.html | ||||
* | Merge pull request #329 from darkain/patch-1 | Marcello Coutinho | 2012-10-15 | 1 | -12/+12 |
|\ | | | | | Fixed two issues with IP Ranges | ||||
| * | Small cleanup for readability | Vince | 2012-10-10 | 1 | -1/+1 |
| | | | | | | Small cleanup for readability | ||||
| * | Net masking math was off by 1 | Vince | 2012-10-10 | 1 | -1/+1 |
| | | | | | | Net masking math was off by 1 | ||||
| * | Fixing duplicate IP/Range entries | darkain | 2012-10-09 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because all three cases (CIDR, IP Range, and Single IP Address) are always tested, it is possible that more than one will have a positive match. Examples: 172.16.0.0/12 matches both for CIDR and Individual IP Address 169.254.0.0-169.254.255.255 matches for both Address Range and Individual IP By doing if, elseif, elseif instead of if, if, if testing, the later tests will only be performed if the former tests fail. Because the Individual IP Address test will return a result, even for CIDRs and IP Ranges, that test has been moved to the end of the elseif list. | ||||
| * | IP Range to CIDRs not calculating properly | darkain | 2012-10-09 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Several IP address ranges were being calculated improperly. Examples: 10.0.0.0-10.255.255.255 became 160.0.0.0/8 65.113.241.0-65.113.241.255 became 130.227.226.0/24 72.165.61.0-72.165.61.255 became 145.74.122.0/24 The use of complicated string and regular expressions to calculate netmasks has been replaced with basic and proper bit masking. | ||||
* | | sarg - add permission to sarg_frame.php on priv.inc file | Marcello Coutinho | 2012-10-12 | 1 | -1/+2 |
| | | |||||
* | | Some fixes for squidguard on 2.1 | jim-p | 2012-10-11 | 1 | -9/+21 |
| | | |||||
* | | squid3 - add pfsense 2.1 folder checks | Marcello Coutinho | 2012-10-08 | 1 | -23/+35 |
| | | |||||
* | | Merge pull request #327 from rjcrowder/master | Marcello Coutinho | 2012-10-03 | 1 | -9/+25 |
|\ \ | | | | | | | Dansguardian blacklist download fix for shallalist | ||||
| * | | Update config/dansguardian/dansguardian.php | rjcrowder | 2012-10-02 | 1 | -9/+25 |
| | | | |||||
* | | | Merge pull request #328 from phil-davis/master | Jim P | 2012-10-03 | 1 | -4/+4 |
|\ \ \ | | |/ | |/| | Write client install exe to temp dir | ||||
| * | | Write client install exe to temp dir | Phil Davis | 2012-10-03 | 1 | -4/+4 |
|/ / | | | | | The code did not work on nanobsd, due to $workdir templates being on a read-only mount point. The appropriate $client_install_exe needs to be written straight to $tempdir rather than first done in $workdir templates. And also we don't want to be writing to $workdir templates every time we make a client install package for someone. | ||||
* | | freeradius2: add some checks on xmlrpc code | Alexander Wilke | 2012-10-03 | 1 | -7/+13 |
| | | |||||
* | | Add export option for OpenVPN 2.3 beta client as well as the existing one. | jim-p | 2012-10-02 | 4 | -13/+41 |
| | | |||||
* | | Merge pull request #326 from phil-davis/master | Jim P | 2012-10-02 | 2 | -16/+15 |
|\ \ | | | | | | | bandwidthd inconsistent field names and defaults | ||||
| * | | Fix inconsistent field names | Phil Davis | 2012-10-02 | 1 | -14/+10 |
| | | | | | | | | | and default values, and some field description text. | ||||
| * | | Fix inconsistent field names | Phil Davis | 2012-10-02 | 1 | -2/+5 |
|/ / | |||||
* | | Merge pull request #325 from phil-davis/master | Marcello Coutinho | 2012-10-01 | 1 | -1/+1 |
|\ \ | | | | | | | Fix equals check for pfblocker rule loading | ||||
| * | | Fix equals check for pfblocker rule loading | Phil Davis | 2012-10-02 | 1 | -1/+1 |
|/ / | | | | | Sorry guys - I missed out an equals sign here, the logic ended up only applying rules to the first interface, and not for others. | ||||
* | | Merge pull request #324 from Nachtfalkeaw/master | Alexander Wilke | 2012-10-01 | 4 | -15/+15 |
|\ \ | | | | | | | FreeRADIUS2: New XMLRPC sync options | ||||
| * | | Update pkg_config.8.xml.amd64 | Alexander Wilke | 2012-10-01 | 1 | -1/+1 |
| | | | |||||
| * | | Update pkg_config.8.xml | Alexander Wilke | 2012-10-01 | 1 | -1/+1 |
| | | | |||||
| * | | Update config/freeradius2/freeradius.inc | Alexander Wilke | 2012-10-01 | 1 | -12/+11 |
| | | | | | | | | | typo | ||||
| * | | Update config/freeradius2/freeradiussync.xml | Alexander Wilke | 2012-10-01 | 1 | -1/+2 |
|/ / | | | | | added field description | ||||
* | | Merge pull request #322 from IT-B-IT/patch-2 | Alexander Wilke | 2012-10-01 | 1 | -1/+14 |
|\ \ | | | | | | | Update config/freeradius2/freeradiussync.xml | ||||
| * | | Update config/freeradius2/freeradiussync.xml | IT-B-IT | 2012-09-25 | 1 | -1/+14 |
| | | | | | | | | | | | | Added the option to edit the default XMLRPC timeout from the GUI also added the option to activate or deactivate the servers that it is going to replicate to by adding a check mark to each server | ||||
* | | | Merge pull request #321 from IT-B-IT/patch-1 | Alexander Wilke | 2012-10-01 | 1 | -10/+25 |
|\ \ \ | | | | | | | | | Update config/freeradius2/freeradius.inc | ||||
| * | | | Update config/freeradius2/freeradius.inc | IT-B-IT | 2012-09-25 | 1 | -10/+25 |
| |/ / | | | | | | | | | | Added the option to edit the default XMLRPC timeout from the GUI also added the option to activate or deactivate the servers that it is going to replicate to by adding a check mark to each server | ||||
* | | | Merge pull request #323 from phil-davis/master | Marcello Coutinho | 2012-09-28 | 1 | -9/+18 |
|\ \ \ | | | | | | | | | Stop pfblocker rules being added twice | ||||
| * | | | Stop pfblocker rules being added twice | Phil Davis | 2012-09-29 | 1 | -9/+18 |
|/ / / | | | | | | | | | | If users move rules around in the GUI, the the rules for 1 interface can end up in separate blocks in config.xml. This causes pfBlocker code to put a set of pfBlocker rules before each separate block of rules for an interface, as they are processed out of config.xml. The code here fixes that, ensuring that pfBlocker rules are only added once to an interface, the first time the interface is found in a rule. | ||||
* | | | sarg - fix report access without authentication on sarg_frame.php | marcelloc | 2012-09-27 | 1 | -0/+2 |
| | | | |||||
* | | | Update this one too | jim-p | 2012-09-25 | 1 | -3/+3 |
| | | | |||||
* | | | Fix version and pbi spec | jim-p | 2012-09-25 | 1 | -2/+2 |
| | | | |||||
* | | | Fixup pbi depend line | jim-p | 2012-09-25 | 2 | -4/+2 |
| | | | |||||
* | | | fixup pbi build for this new pkg | jim-p | 2012-09-25 | 2 | -1/+21 |
|/ / | |||||
* | | Merge pull request #320 from laleger/master | Jim P | 2012-09-25 | 5 | -1/+947 |
|\ \ | | | | | | | Initial syslog-ng package submission (ALPHA) | ||||
| * | | Fixed issue where <depends_on_package> tags were used instead of ↵ | Leger Lance | 2012-09-16 | 1 | -2/+2 |
| | | | | | | | | | | | | <depends_on_package_pbi> tags | ||||
| * | | Fixed issue with syslog-ng package entry (was missing enclosing ↵ | Leger Lance | 2012-09-16 | 1 | -0/+2 |
| | | | | | | | | | | | | <package></package>) | ||||
| * | | New syslog-ng package | Leger Lance | 2012-09-16 | 5 | -1/+945 |
|/ / | |||||
* | | dansguardian - add additional check to detect xml rpc sync call | marcelloc | 2012-09-24 | 3 | -5/+5 |
| | | |||||
* | | dansguardian - add multiple select option to dansguardian group acl | marcelloc | 2012-09-21 | 6 | -53/+125 |
| | | |||||
* | | squid - change pfsense version check to maintain compatibility with 1.2.3 | marcelloc | 2012-09-20 | 1 | -4/+5 |
| | | | | | | | | http://forum.pfsense.org/index.php/topic,53809.msg287761.html#msg287761 | ||||
* | | Merge branch 'master' of https://github.com/bsdperimeter/pfsense-packages | marcelloc | 2012-09-19 | 6 | -21/+59 |
|\ \ | |||||
| * | | Make quoting the server CN optional since it seems to break more clients ↵ | jim-p | 2012-09-18 | 5 | -16/+54 |
| | | | | | | | | | | | | than it fixes; Add a third Yealink variant. | ||||
| * | | apache with mod_security-dev - fix more typos | Marcello Coutinho | 2012-09-18 | 1 | -1/+1 |
| | | | |||||
| * | | apache with mod_security-dev - typo fix | Marcello Coutinho | 2012-09-18 | 1 | -2/+2 |
| | | | |||||
| * | | apache with mod_security-dev - remove "+" from package name | Marcello Coutinho | 2012-09-18 | 2 | -2/+2 |
| | | | |||||
* | | | sarg - add missing sarg.inc changes to 0.6.1 | Marcello Coutinho | 2012-09-19 | 3 | -23/+50 |
|/ / | |||||
* | | apache2+modsecurity - new package gui devel version | Marcello Coutinho | 2012-09-18 | 15 | -0/+3768 |
| | | | | | | | | need pbi to be rebuild to get apache worker options working |