Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								e1deeba72a 
								
							 
						 
						
							
							
								
								nagios: Move cron_file_helper from bots/ to scripts/lib.  
							
							... 
							
							
							
							This ensures the tool is available in Zulip production deployments. 
							
						 
						
							2016-05-07 19:37:06 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								2b386921f0 
								
							 
						 
						
							
							
								
								Finish purging 'fromt typing import *' from Zulip codebase.  
							
							
							
						 
						
							2016-04-07 14:11:21 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								dd4fe7e099 
								
							 
						 
						
							
							
								
								Add PEP-484 annotations to bots/.  
							
							
							
						 
						
							2016-04-03 15:40:23 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eklavya Sharma 
								
							 
						 
						
							
							
							
							
								
							
							
								5e3013d2c2 
								
							 
						 
						
							
							
								
								Partially apply Python 3 libmodernize.fixes.fix_dict_six.  
							
							... 
							
							
							
							Refer to #256  
							
						 
						
							2016-03-19 15:52:58 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eklavya Sharma 
								
							 
						 
						
							
							
							
							
								
							
							
								7ccd60584a 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libmodernize.fixes.fix_xrange_six  
							
							... 
							
							
							
							Refer to #256  
							
						 
						
							2016-03-10 22:03:58 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eklavya Sharma 
								
							 
						 
						
							
							
							
							
								
							
							
								ab2692b217 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libmodernize.fixes.fix_file  
							
							... 
							
							
							
							Refer to #256  
							
						 
						
							2016-03-10 22:02:34 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eklavya Sharma 
								
							 
						 
						
							
							
							
							
								
							
							
								37365ba5a3 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libfuturize.fixes.fix_print_with_import  
							
							... 
							
							
							
							Refer #256  
							
						 
						
							2016-03-10 22:02:17 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eklavya Sharma 
								
							 
						 
						
							
							
							
							
								
							
							
								5272ca0674 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform lib2to3.fixes.fix_except  
							
							
							
						 
						
							2016-03-10 22:01:50 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								8c188cda49 
								
							 
						 
						
							
							
								
								Make log2zulip error message more accurate.  
							
							... 
							
							
							
							In particular, in the case of a permissions issue reading the log
file, it would claim the log file doesn't exist. 
							
						 
						
							2016-02-02 23:04:48 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								b9eacb19c9 
								
							 
						 
						
							
							
								
								python3: Fix usage of .keys()/.values() to handle iterators.  
							
							... 
							
							
							
							This fixes the places where we use the result of .keys(), .items(),
and .values() that wouldn't work with an iterator to wrap them with
list(). 
							
						 
						
							2016-01-26 21:11:25 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								4dc5761ce2 
								
							 
						 
						
							
							
								
								Switch all urllib/urlparse usage to six.moves.urllib.  
							
							... 
							
							
							
							This provides Python 2+3 compatibility for our use of urllib.
Also add a test to avoid future regressions. 
							
						 
						
							2016-01-26 21:09:43 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								91d851c448 
								
							 
						 
						
							
							
								
								Apply modernize transform libmodernize.fixes.fix_file.  
							
							... 
							
							
							
							This replaces use of file() with open() which is python 3 compatible,
and also adds it to our python 3 support test suite. 
							
						 
						
							2016-01-26 21:09:42 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								e4f85d2462 
								
							 
						 
						
							
							
								
								Use new-style classes consistently for Python 3 support.  
							
							... 
							
							
							
							Also add the fixer for this to our list of fixers we check. 
							
						 
						
							2015-11-04 08:01:52 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								c5e2995b6e 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libmodernize.fixes.fix_xrange_six.  
							
							
							
						 
						
							2015-11-01 09:35:06 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								3cfe157299 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libmodernize.fixes.fix_map.  
							
							
							
						 
						
							2015-11-01 09:35:05 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								239d080616 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libmodernize.fixes.fix_imports_six.  
							
							
							
						 
						
							2015-11-01 09:26:16 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								ec5103191e 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libmodernize.fixes.fix_filter.  
							
							
							
						 
						
							2015-11-01 09:26:16 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								328816a329 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libfuturize.fixes.fix_print_with_import.  
							
							
							
						 
						
							2015-11-01 09:26:16 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								9b9ca80fab 
								
							 
						 
						
							
							
								
								Apply Python 3 futurize transform libfuturize.fixes.fix_absolute_import.  
							
							
							
						 
						
							2015-11-01 09:26:16 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Steven Oud 
								
							 
						 
						
							
							
							
							
								
							
							
								b0325fef5b 
								
							 
						 
						
							
							
								
								Consistently use /usr/bin/env python2.7 in shebangs and commands.  
							
							
							
						 
						
							2015-10-21 22:58:21 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Waseem Daher 
								
							 
						 
						
							
							
							
							
								
							
							
								8281e557b1 
								
							 
						 
						
							
							
								
								Update Zulip support email to zulip-devel@googlegroups.com.  
							
							... 
							
							
							
							Ideally some of these templates should really point to the
local installation's support email address, but this is a
good start.
Exceptions:
* Where to report security incidents
* MIT Zephyr-related pages
* zulip.com terms and conditions 
							
						 
						
							2015-09-29 17:59:47 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jon Johnson 
								
							 
						 
						
							
							
							
							
								
							
							
								a2765aef3a 
								
							 
						 
						
							
							
								
								Fix typo in jabber mirror error  
							
							... 
							
							
							
							assistence -> assistance 
							
						 
						
							2015-09-26 22:03:00 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								aed2e0d2f9 
								
							 
						 
						
							
							
								
								Remove certain hardcoded email addresses in Zephyr mirroring.  
							
							... 
							
							
							
							(imported from commit 9fd492b5463f04741558687f27522d48a5dc795b) 
							
						 
						
							2015-09-20 00:36:12 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Abbott 
								
							 
						 
						
							
							
							
							
								
							
							
								c20623b841 
								
							 
						 
						
							
							
								
								Change API example usernames to use example.com domain.  
							
							... 
							
							
							
							(imported from commit 41b7be58735df0ea3d3a3daf23bc0f78606abc0d) 
							
						 
						
							2015-09-19 18:12:02 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								7784fb9758 
								
							 
						 
						
							
							
								
								Update Trac bot config  
							
							... 
							
							
							
							(imported from commit 07e976637882030faedbf2e34448404e7e1de379) 
							
						 
						
							2015-02-05 22:46:30 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								2cd47bba2b 
								
							 
						 
						
							
							
								
								Update Git bot config  
							
							... 
							
							
							
							(imported from commit 8c189e199178efd8aa054d9762cb26330ab4ae86) 
							
						 
						
							2015-02-05 22:46:30 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								b2e1acfd44 
								
							 
						 
						
							
							
								
								Update Nagio's zuliprc  
							
							... 
							
							
							
							(imported from commit ac06b7cf41b1c0353c2096c4b9befae432fd7c5b) 
							
						 
						
							2015-02-05 22:46:30 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jason Michalski 
								
							 
						 
						
							
							
							
							
								
							
							
								56a353c5ac 
								
							 
						 
						
							
							
								
								Raise the queue depth limits for missedmessage_emails  
							
							... 
							
							
							
							(imported from commit 73a0da21930d9bc121e07c811483311ec171fe7b) 
							
						 
						
							2014-10-06 15:27:54 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jason Michalski 
								
							 
						 
						
							
							
							
							
								
							
							
								1d649fe611 
								
							 
						 
						
							
							
								
								Add an options to set jabber server details  
							
							... 
							
							
							
							--jabber-server-address=JABBER_SERVER_ADDRESS
                    The hostname of your Jabber server
--jabber-server-port=JABBER_SERVER_PORT
                    The port of your Jabber server
(imported from commit f6b73ce6a2e3dcdbb100a1b6aba5ad89fc99a457) 
							
						 
						
							2014-07-29 21:46:34 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jason Michalski 
								
							 
						 
						
							
							
							
							
								
							
							
								700e744690 
								
							 
						 
						
							
							
								
								Update message events to include is_mirror_dummy  
							
							... 
							
							
							
							This can be used by mirroring scripts to only forward messages to users
who do not zulip accounts.
(imported from commit 200d6bcaaf39238bfb01480a9e906d567d4d9e11) 
							
						 
						
							2014-07-29 21:46:34 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								ec97f93ba5 
								
							 
						 
						
							
							
								
								Update user_root path for personal zmirrors  
							
							... 
							
							
							
							The location of the api directory moved.
(imported from commit 408ef7d47e729a0ad2454a5326cfaddcfff9855f) 
							
						 
						
							2014-05-20 17:29:29 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								8829e654c1 
								
							 
						 
						
							
							
								
								zephyr_mirror: Specify a z_charset of utf-8  
							
							... 
							
							
							
							andersk reports that we are "incorrectly sending outgoing zephyrs with z_charset
= ZCHARSET_ISO_8859_1, which breaks zwgc (other clients tend to ignore
z_charset). I'm assuming you're shelling out to zwrite; you need to use zwrite
-x UTF-8, or export LC_ALL=en_US.UTF-8."
(imported from commit 8abb28bf8acbe0b5aa99ca13faab24e1e554a031) 
							
						 
						
							2014-05-20 17:29:29 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								9e4b680e1f 
								
							 
						 
						
							
							
								
								zephyr_mirror: Use timeout_success_equivalent in front-end script  
							
							... 
							
							
							
							(imported from commit 2263a371edda74c1c38a377e0fef5372999888b4) 
							
						 
						
							2014-04-23 11:31:04 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								d12490b3e5 
								
							 
						 
						
							
							
								
								jabber_mirror: Use timeout_success_equivalent in front-end script  
							
							... 
							
							
							
							(imported from commit 6ca8ec5a2c31d20e4e437804c65650c5a98c69f9) 
							
						 
						
							2014-04-23 11:31:04 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								45b90fc33d 
								
							 
						 
						
							
							
								
								jabber_mirror: Explicitly exit when we encounter an error in the main loop  
							
							... 
							
							
							
							(imported from commit 19b0f29bfd8c01fa300bdb9db2011bba0b55ddd4) 
							
						 
						
							2014-04-23 11:31:04 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								43ef992ab0 
								
							 
						 
						
							
							
								
								jabber_mirror: Don't try to restart on errors caused by initial configuration  
							
							... 
							
							
							
							(imported from commit 5d9e6c88e1a159fe6e5e46c21c483b5c79444223) 
							
						 
						
							2014-04-23 11:31:03 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								a4f3a0c79e 
								
							 
						 
						
							
							
								
								jabber_mirror: Split out into front-end and back-end processes  
							
							... 
							
							
							
							This adds auto-restarting capability.
(imported from commit 74a01a0272025706f2eb902eeedd9c05ee054272) 
							
						 
						
							2014-04-23 11:31:03 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								41a782e011 
								
							 
						 
						
							
							
								
								Move backoff classes to the Zulip API  
							
							... 
							
							
							
							(imported from commit 76c5d499874f0397c505ab3fcda631a1a46847b6) 
							
						 
						
							2014-04-23 11:31:03 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jessica McKellar 
								
							 
						 
						
							
							
							
							
								
							
							
								ee04f7b3e8 
								
							 
						 
						
							
							
								
								[puppet] Change digest email send time by 1 hour for daylight savings.  
							
							... 
							
							
							
							(imported from commit 8ac1747f15e10b850f73ce28ea4579bee62ba1a4) 
							
						 
						
							2014-03-14 20:48:49 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								9fcd95b2df 
								
							 
						 
						
							
							
								
								jabber_mirror: Calculate the zulip domain from the client email address  
							
							... 
							
							
							
							We were previously calculating it from the zulip_email option, which might not
be set if it is being specified via the config file.
(imported from commit 76866c239ca63ef90a7967c9a6027aeec9be6390) 
							
						 
						
							2014-03-06 21:59:55 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								83afe8f6f8 
								
							 
						 
						
							
							
								
								jabber_mirror: Report a useful error message when fetching initial Zulip streams/subscriptions  
							
							... 
							
							
							
							(imported from commit 1133cb0ddb349cda7e16586fba4ba72888e66887) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								799953e7df 
								
							 
						 
						
							
							
								
								jabber_mirror: Fix Zulip error handling  
							
							... 
							
							
							
							(imported from commit 8548576635e5be9b725e059c2d4d9ef9953ec97a) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								ce660ac03f 
								
							 
						 
						
							
							
								
								jabber_mirror: Add option to append a suffix to Zulip usernames  
							
							... 
							
							
							
							This is needed for the ist.mit.edu realm, where the same email address could be
used for all three of Zulip, Jabber, and Zephyr.  To disambiguate Jabber mirror
dummy users from Zephyr mirror dummy users with the same email address (but
which would be in a different realm), we force all email addresses in the
ist.mit.edu realm to have local parts that end in "+ist".
(imported from commit 5ebad2cc8f6c7286b4b9426d57ed75578703fb86) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								967b3c7156 
								
							 
						 
						
							
							
								
								jabber_mirror: Remove dead code  
							
							... 
							
							
							
							(imported from commit b67faad6888713554929c7e6a8147d19c489956a) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								c040d16425 
								
							 
						 
						
							
							
								
								jabber_mirror: Allow the mode to be specified in the config file  
							
							... 
							
							
							
							(imported from commit 8de5006f6935271997204d958c44c03ebf14c403) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								b5c326b444 
								
							 
						 
						
							
							
								
								jabber_mirror: Remove --openfire option  
							
							... 
							
							
							
							It doesn't actually seem to be necessary to adjust the SSL version in current
versions of Openfire.
(imported from commit 6766d9fd5081cf16f2a5e3e2b008f20e7498caa4) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								2f70b8ff39 
								
							 
						 
						
							
							
								
								jabber_mirror: Allow the MUC nickname to be specified  
							
							... 
							
							
							
							This allows users to run the public mirror as a regular user.
(imported from commit 3512dacf329dadc784d7be492ad290b17082bad4) 
							
						 
						
							2014-03-04 23:02:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								88458043bb 
								
							 
						 
						
							
							
								
								jabber_mirror: Change the default resource to 'zulip'  
							
							... 
							
							
							
							(imported from commit 290dca7fce5230dc94425478ad48fb8b8a0952b6) 
							
						 
						
							2014-03-04 23:02:26 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								3e13e87a84 
								
							 
						 
						
							
							
								
								jabber_mirror: Guess the conference domain when it isn't specified  
							
							... 
							
							
							
							(imported from commit 3fed4bdf5ca73b3b9d58ec42a2031e75e813bbd2) 
							
						 
						
							2014-03-04 23:02:26 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Zev Benjamin 
								
							 
						 
						
							
							
							
							
								
							
							
								d2bc74003e 
								
							 
						 
						
							
							
								
								jabber_mirror: Use sleekxmpp.JID when manipulating message recipients  
							
							... 
							
							
							
							(imported from commit 57b8384bf79a60abbaf535bd11f222d7f63db251) 
							
						 
						
							2014-03-04 23:02:26 -05:00