1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-25 20:44:01 +01:00

29 Commits

Author SHA1 Message Date
Meik Sievertsen
5b927b0162 only very small things.
git-svn-id: file:///svn/phpbb/trunk@3967 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-05-03 23:33:04 +00:00
Paul S. Owen
786c8c2a06 Altered various aspects of emailing ... tested on a windows platform with both mail() and direct smtp ... it worked in both cases.
git-svn-id: file:///svn/phpbb/trunk@3902 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-04-21 14:13:10 +00:00
Paul S. Owen
7506d3d914 Updated topic/forum notification ... untested in live situation ... appeared to work via manual testing
git-svn-id: file:///svn/phpbb/trunk@3888 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-04-19 12:58:37 +00:00
Meik Sievertsen
cd1f9c63d6 apply 2.0.x change
git-svn-id: file:///svn/phpbb/trunk@3759 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-03-30 17:51:56 +00:00
Paul S. Owen
b0545e7636 Tidy up and simplify emailer class, add generate_board_url function ... note changes to emailer setup! Example will be adm/index.php remind
git-svn-id: file:///svn/phpbb/trunk@3718 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-03-25 14:19:23 +00:00
Paul S. Owen
58e755b906 Various cleanups ... no doubt breaking stuff in the process
git-svn-id: file:///svn/phpbb/trunk@3624 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-03-09 16:14:14 +00:00
James Atkinson
a0d0d1da78 Changes for UCP and registration, pretty minor overall. Fixed emailer to use
trigger_error insted of message_die.

emailer still needs some clean-up


git-svn-id: file:///svn/phpbb/trunk@3430 89ea8834-ac86-4346-8a33-228a782c2dd0
2003-01-30 20:02:09 +00:00
Paul S. Owen
ef09c7e9c9 Notes to port bug fixes from 2.0.x
git-svn-id: file:///svn/phpbb/trunk@3165 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-12-03 00:40:12 +00:00
Paul S. Owen
691f50ada9 Changed $board_config to $config, more posting "stuff", altered polling code in viewtopic and loads of new problems, poor coding, etc. created :)
git-svn-id: file:///svn/phpbb/trunk@2983 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-10-30 00:57:27 +00:00
Paul S. Owen
30aeac65dc Well, here are all my changes ... don't blame me if things break :D
git-svn-id: file:///svn/phpbb/trunk@2923 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-10-04 13:09:10 +00:00
Paul S. Owen
72db8c4a5e Combine emailer and smtp
git-svn-id: file:///svn/phpbb/trunk@2663 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-07-14 14:34:16 +00:00
Paul S. Owen
af4f292d28 Combine SMTP and Emailer sources into one
git-svn-id: file:///svn/phpbb/trunk@2650 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-06-29 01:47:26 +00:00
Paul S. Owen
c0495aace4 Updates in line with 2.0.1
git-svn-id: file:///svn/phpbb/trunk@2630 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-06-10 01:52:48 +00:00
Paul S. Owen
5b0bba72b1 merged from 2.0.0 branch (marked merge_point_20020420) + assorted updates and trial stuff for example session alterations
git-svn-id: file:///svn/phpbb/trunk@2532 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-04-20 00:22:29 +00:00
Paul S. Owen
ca2a956b6c Alter way variables are substituted ... was causing problems when a [] followed a {VAR} in the email ...
git-svn-id: file:///svn/phpbb/trunk@2407 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-03-22 19:33:28 +00:00
Paul S. Owen
b651274960 Stop being too paranoid about hacking of includes containing only fully inclusive functions
git-svn-id: file:///svn/phpbb/trunk@2328 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-03-18 23:53:12 +00:00
Paul S. Owen
502e4aceea Updates to overcome security issue + updates of various functions, initial version of profile registration include ... not completed but should be functional for obvious reasons(!)
git-svn-id: file:///svn/phpbb/trunk@2304 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-03-18 13:35:23 +00:00
Paul S. Owen
19c55abb19 Move subject preg_ to after parseing ... in case subject needs to contain any variables
git-svn-id: file:///svn/phpbb/trunk@2237 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-03-01 16:43:32 +00:00
Paul S. Owen
a54b016790 Add ability to specify subject within email, format is Subject: (localised subject) followed by carriage return/newline.
git-svn-id: file:///svn/phpbb/trunk@2235 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-03-01 15:46:49 +00:00
the_systech
9819d4f777 This should fix Bug #498451.. Keep it from including smtp.php more than once..
git-svn-id: file:///svn/phpbb/trunk@2007 89ea8834-ac86-4346-8a33-228a782c2dd0
2002-01-28 21:03:25 +00:00
natec
adb6ff9f58 Fixed bug 481943. Regexp that normalized linebreaks to \r\n was fucked, so it was changing (char)\n to \r\n and dropping (char). Hence we lost the char before every single linebreak in every email sent thru SMTP. yay. ALso fixed so it gets the FROM address from the right place.
git-svn-id: file:///svn/phpbb/trunk@1443 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-11-26 00:50:03 +00:00
Paul S. Owen
d1fd694282 Added global PM disable + modded emailer to allow lang select + re-added back box limits my dumbness removed recently
git-svn-id: file:///svn/phpbb/trunk@1305 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-11-13 16:09:10 +00:00
Paul S. Owen
5ed2aa7590 Changed paths for language
git-svn-id: file:///svn/phpbb/trunk@1170 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-10-11 12:18:37 +00:00
Paul S. Owen
9de75b5dcf Updated and fixed various issues, see post in developers forum for info
git-svn-id: file:///svn/phpbb/trunk@1083 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-09-25 18:18:47 +00:00
James Atkinson
191e52086f Re-added GPL disclaimers
git-svn-id: file:///svn/phpbb/trunk@943 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-08-30 22:20:23 +00:00
Paul S. Owen
92fda1ce7c Modified header comments
git-svn-id: file:///svn/phpbb/trunk@933 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-08-26 14:04:27 +00:00
Paul S. Owen
3489840e84 Removed windows returns and final newline
git-svn-id: file:///svn/phpbb/trunk@850 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-08-13 14:15:47 +00:00
James Atkinson
282367ea52 Implmented the emailer class everywhere it needs it (just registration and private message notification so far)
git-svn-id: file:///svn/phpbb/trunk@845 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-08-13 03:16:35 +00:00
James Atkinson
df3da5934d Added emailer class, did alterations and templates for registration
Welcome message vars can be removed from lang file


git-svn-id: file:///svn/phpbb/trunk@844 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-08-13 01:07:14 +00:00