Fix message id for Postfix in Message Operations#1
Closed
endelwar wants to merge 17 commits intomailwatch:masterfrom
endelwar:master
Closed
Fix message id for Postfix in Message Operations#1endelwar wants to merge 17 commits intomailwatch:masterfrom endelwar:master
endelwar wants to merge 17 commits intomailwatch:masterfrom
endelwar:master
Conversation
Mailscanner adds a dot and a 5 digit random number to Postfix message id; this message id is used in Message Operations as variable names in radio buttons, but PHP doesn't allow dots (.) in variable names and changes them with underscore (_) [http://php.net/manual/en/language.variables.external.php]. This fix checks if $mta is Postfix and changes back underscores to dots making Message Operations works.
This commit removes all trailing PHP closing tags ("?>") and extra new
lines; it also add some missing semicolons.
This commit removes the W3C and SourceForge logos from page footer, making page load faster because of the removed connection to two external server (http://www.w3.org/Icons/valid-html401 and http://sflogo.sourceforge.net/sflogo.php?group_id=87163&type=10). Removing SourceForge logo removes also user tracking by SourceForge.
If MTA stats are empty some errors appear in rep_total_mail_by_date.php
Fixes a Local File Inclusion security bug, marked as CVE-2008-5991
To remove "BETA 4" subdir: version tagging can be done using git-tag commanf
Contributor
|
Have added manually, this was being stupid :) |
endelwar
pushed a commit
that referenced
this pull request
Jun 3, 2015
Fix path in the install manual
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mailscanner adds a dot and a 5 digit random number to Postfix message id; this message id is used in Message Operations as variable names in radio buttons, but PHP doesn't allow dots (.) in variable names and changes them with underscore (_) [http://php.net/manual/en/language.variables.external.php].
This fix checks if $mta is Postfix and changes back underscores to dots making Message Operations works.