0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
Commit Graph

1884 Commits

Author SHA1 Message Date
David Goodwin
68a42dd331
add docker image link to README.md
Add link to Docker images
2018-02-12 09:15:13 +00:00
David Goodwin
152975d05c move to use db_assoc() rather than db_array() (code assumes assoc. array) 2018-02-10 21:08:35 +00:00
David Goodwin
c147eb053b move to use db_assoc() rather than db_array() (code assumes assoc. array) 2018-02-10 21:08:29 +00:00
David Goodwin
43a2493876 remove unused code. 2018-02-10 21:07:33 +00:00
David Goodwin
4dec9cd24e refactor (reduce nesting) 2018-02-10 21:07:10 +00:00
David Goodwin
d088651fd6 Drop db_commit(), db_rollback(), db_begin() functions (unused). 2018-02-10 21:05:57 +00:00
David Goodwin
0b66cd6bd2 Do not try to db_escape() an SQL field. 2018-02-10 21:04:29 +00:00
David Goodwin
4e9d166765 use db_assoc() rather than db_array() as we're depending on an assoc array afterall. 2018-02-10 21:02:52 +00:00
David Goodwin
45a1073b97 change to use foreach($a as $k => $v) { ... } 2018-02-10 21:02:09 +00:00
David Goodwin
8ac94394cb improve phpdoc 2018-02-10 21:00:58 +00:00
David Goodwin
e2b1233269 Use filter_var($x, FILTER_VALIDATE_EMAIL) as an extra check if we can in check_email(...) 2018-02-10 20:56:56 +00:00
David Goodwin
5e1855632a allow local aliases - see #134 2018-02-09 21:19:45 +00:00
David Goodwin
2615b6fece see #132 - better broadcast mail format, perhaps 2018-02-08 16:11:57 +00:00
David Goodwin
2b8e6ff5b4
Merge pull request #131 from cygery/fix-user-logout
Destroy session when loading user login page
2018-02-06 09:11:08 +00:00
Erwin Goslawski
d0897f625d
Destroy session when loading user login page
Fixes #130
2018-02-06 08:23:41 +01:00
David Goodwin
9bef45aed5 remove logout behaviour from common.php (never used); try and fix logout in login.php - see #130 2018-02-05 20:47:07 +00:00
David Goodwin
d305374568 make the html slightly more html5 like; remove possibility of smarty.session.lang being undefined and erroring 2018-02-05 20:46:27 +00:00
David Goodwin
220f8289c7 see #129 - add hint 2018-02-02 14:23:53 +00:00
David Goodwin
68934539bf see #129 - be consistent over mail root dir 2018-02-02 14:21:42 +00:00
David Goodwin
828e3b2290 yet another datetime in the future that needs changing a little... 2018-01-30 15:53:42 +00:00
David Goodwin
aad433eceb stop undefined error on CONF[sendmail_all_admins] 2018-01-26 20:03:29 +00:00
David Goodwin
c3b87ebb11 phpcs fixes 2018-01-26 19:58:35 +00:00
David Goodwin
06f6c71c56
Merge pull request #127 from Ecodev/reformat
Reformat everything with PHP-Cs-Fixer
2018-01-26 19:55:20 +00:00
Adrien Crivelli
15df6c1d7b
Reformat everything with PHP-Cs-Fixer 2018-01-26 23:54:37 +09:00
David Goodwin
943c5a94ee
Merge pull request #121 from J0WI/split-docker
Move docker to dedicated repo
2018-01-26 14:38:45 +00:00
J0WI
5e8e1dd5f0 Move docker to dedicated repo 2018-01-26 14:16:07 +01:00
David Goodwin
f0be0ebf62 remove more incpath usages 2018-01-25 21:13:36 +00:00
David Goodwin
2bb583a86a remove specifying MYISAM as our default db table format; use whatever the db server wants to default to 2018-01-25 21:08:26 +00:00
David Goodwin
d259544515 ignore config.local.php too 2018-01-25 21:02:11 +00:00
David Goodwin
d5c40453ac update debian things, fix patch, move backup.php to public, fix lighttpd config 2018-01-25 20:59:15 +00:00
David Goodwin
63f44c9b2d update INSTALL.TXT to mention public/ etc 2018-01-25 20:58:48 +00:00
David Goodwin
104561c419 change to public/ in apache alias 2018-01-25 20:36:07 +00:00
David Goodwin
3d63d8b9af update debian things to perhaps cope with public/ 2018-01-25 20:32:15 +00:00
David Goodwin
99147d51eb move public facing stuff into public/, this allows us to stop exposing templates_c/ etc to the world 2018-01-25 20:27:09 +00:00
David Goodwin
436bbe87a8 change DATEFUTURE to 2038-01-18 ... - see #126 2018-01-25 20:02:13 +00:00
David Goodwin
e1d42ed7d3 rename script commands 2018-01-25 19:57:08 +00:00
David Goodwin
2fc3af0b73 composer.lock 2018-01-25 19:57:00 +00:00
David Goodwin
80d30d81e9 add parallel-lint 2018-01-25 19:56:50 +00:00
David Goodwin
d9f66eca4c minimal php_cs.dist file - PSR2 with braces for class opening on the same line 2018-01-25 19:56:21 +00:00
Adrien Crivelli
6f7e75dc63 Introduce PHP-CS-Fixer and Travis to enforce code style
Commands `composer check` and `composer fix` can be used to respectively
check and automatically fix code style in the entire project.
2018-01-25 19:55:51 +00:00
David Goodwin
3593d23c6f remove undefined variable _SERVER[REQUEST_METHOD] when running from the cli 2018-01-25 19:52:40 +00:00
David Goodwin
772a882c74
Merge pull request #124 from sitilge/master
Password reset  - fix invalid DB query (double backtick)
2018-01-22 13:15:12 +00:00
Martins Eglitis
97f0fa2c3d Fix invalid DB query (double backtick) 2018-01-22 15:10:46 +02:00
David Goodwin
938e7dcb7d
Merge pull request #122 from dryware-fr/patch-1
Typo correction
2018-01-19 19:32:46 +00:00
dryware-fr
e4bfae260b
Typo correction
There was a typo in the script, rendering a TCP connection to MySQL or Postgres impossible.
2018-01-19 17:26:56 +01:00
Christian Boltz
75bcf3091b
Fix instructions for templates_c directory in UPGRADE.txt
Also add instructions for SELinux, and fix the version number describing
since when templates_c is used.

Fixes: https://github.com/postfixadmin/postfixadmin/issues/119
2018-01-13 18:18:10 +01:00
Christian Boltz
3bd7ef2b0a
adjust pgsql $row['v_active'] only if vacation is enabled
This avoids an "Undefined index" warning if vacation is disabled.

Fixes: https://github.com/postfixadmin/postfixadmin/issues/118
2018-01-13 18:10:13 +01:00
David Goodwin
9982783481
Merge pull request #117 from mzch/ja_fix
Remove '# XXX'
2018-01-10 09:27:19 +00:00
Koichi MATSUMOTO
70c839cbc6 Remove '# XXX'
Removed '# XXX' comments
2018-01-10 07:27:51 +09:00
David Goodwin
a52eeaf020
Merge pull request #116 from mzch/ja_fix
Ja fix
2018-01-09 15:08:17 +00:00