[Citadel Development] Citadel commit log: revision 8860

2010-08-18 Thread ajc

r8860 | ajc | 2010-08-18 23:26:18 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   M /trunk/citadel/clientsocket.c

* If there are multiple IP addresses available for a host, sock_connect() now 
tries all of them.  This includes IPv6/IPv4.



[Citadel Development] Citadel commit log: revision 8859

2010-08-18 Thread ajc

r8859 | ajc | 2010-08-18 23:06:16 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   M /trunk/citadel/clientsocket.c

* Replaced sock_connect() with a new version that can connect to both IPv4 and 
IPv6.  TODO: try multiple addresses if available.



[Citadel Development] Citadel commit log: revision 8858

2010-08-18 Thread ajc

r8858 | ajc | 2010-08-18 22:39:31 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   M /trunk/citadel/clientsocket.c
   M /trunk/citadel/clientsocket.h
   M /trunk/citadel/modules/clamav/serv_virus.c
   M /trunk/citadel/modules/network/serv_network.c
   M /trunk/citadel/modules/pop3client/serv_pop3client.c
   M /trunk/citadel/modules/smtp/serv_smtp.c
   M /trunk/citadel/modules/spam/serv_spam.c

* Removed the 'protocol' parameter from the sock_connect() function.  All we 
have ever used here is TCP, and we don't have the functions in place to support 
UDP datagrams anyway.  Removed the spurious parameter in preparation for an 
overhaul of this function.



[Citadel Development] Citadel commit log: revision 8857

2010-08-18 Thread the_mgt

r8857 | the_mgt | 2010-08-18 20:20:07 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   M /trunk/webcit/auth.c
   M /trunk/webcit/static/t/display_main_menu.html
   M /trunk/webcit/static/t/who.html

minor HTML validation fixes, only cases, typos, superflous spaces/tabs and some 
 tags removed where there were too many



[Citadel Development] Citadel commit log: revision 8856

2010-08-18 Thread dothebart

r8856 | dothebart | 2010-08-18 17:11:22 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   D /trunk/webcit/floors.c
   M /trunk/webcit/roomops.c

* move floor-save-handlers into roomops.c, remove floors.c



[Citadel Development] Citadel commit log: revision 8855

2010-08-18 Thread dothebart

r8855 | dothebart | 2010-08-18 17:11:13 -0400 (Wed, 18 Aug 2010) | 4 lines
Changed paths:
   M /trunk/webcit/roomlist.c
   M /trunk/webcit/static/t/floors.html
   M /trunk/webcit/static/t/floors_edit_one.html
   M /trunk/webcit/subst.c

* New COND:FLOOR:NROOMS : whether this floor has n-rooms
* use the right toknes...
* use LFLR
* fix comment token function



[Citadel Development] Citadel commit log: revision 8854

2010-08-18 Thread dothebart

r8854 | dothebart | 2010-08-18 14:29:59 -0400 (Wed, 18 Aug 2010) | 2 lines
Changed paths:
   M /trunk/webcit/subst.c
   M /trunk/webcit/webserver.c

* add a comment token '--', whichs content will show up in the output if -T is 
active
* fix typo



[Citadel Development] Re: Unusual SSL behavior, likely bug

2010-08-18 Thread scianos
 > Aug 17 2010 11:05pm from dothebart @uncnsrd   
 >Subject: Re: Unusual SSL behavior, likely bug  
 >if you compile citadel with   
 >  
 >'-D BIGBAD_IODBG'   
 >  
 >as one of your CFLAGS, it will write a transscript of what its doing  
 >on al IO chanels to /tmp/modulename_fd_random   
 >  
 >this could give us a chance to catch your incident.   
 >  
 >do you have some test system where you could try that out? (on a  
 >production system /tmp/ would run full verry quick)  
 >  
  
 I can populate a test system with data over the weekend, and will try it
out! 
  
 - Stu 
 


[Citadel Development] Citadel commit log: revision 8853

2010-08-18 Thread ajc

r8853 | ajc | 2010-08-18 11:50:00 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   M /trunk/citadel/locate_host.c

* Support IPv6 RBL as described in 
http://tools.ietf.org/html/draft-irtf-asrg-dnsbl-08



[Citadel Development] Citadel commit log: revision 8851

2010-08-18 Thread the_mgt

r8851 | the_mgt | 2010-08-18 10:38:05 -0400 (Wed, 18 Aug 2010) | 2 lines
Changed paths:
   A /trunk/webcit/static/t/floors.html
   A /trunk/webcit/static/t/floors_edit_one.html

New templates for floor editing, will replace floors.c
Additional defines for conds and variables are needed



[Citadel Development] Citadel commit log: revision 8852

2010-08-18 Thread ajc

r8852 | ajc | 2010-08-18 10:38:07 -0400 (Wed, 18 Aug 2010) | 1 line
Changed paths:
   M /trunk/libcitadel/lib/tools.c

* Fix doxygen note for haschar().  The return value is the number of times ch 
appears in st, not the position at which it appears.