From moss@cs.umass.edu Thu Jun 4 01:42:00 2015 From: moss@cs.umass.edu (Eliot Moss) Date: Thu, 04 Jun 2015 01:42:00 -0000 Subject: Some changed behaviors ... Message-ID: <556FACE5.5060301@cs.umass.edu> Dear Jon (et al.) -- I just updated to the latest XWin and got some different behaviors: - In my .XWinrc file I was using MINIMIZE in the STYLES. This now seems to permanently iconize a window. If I click on the icon, it briefly flahses large and then iconizes again. - When using -geometry (with xemacs in particular), the height of the screen seems different, and if I change the geometry height by 1, the height of the window does not change by 1 -- it either doesn't change, or changes by more than one. In the process of playing with this I solved a long-standing mystery to me: -iconic never worked for me on xemacs. It turns out that it works if I place it *first* among the command line flags, but it does not work when placed last. Maybe -geometry overrides it? Anyway, it strikes me as odd, but at least it works now. My workaround for the MINIMIZE thing was to use -iconic on the particular windows instead -- it does what I want anyway. But I thought you'd want to know about MINIMIZE being weird. Not sure what happened with the height thing ... Regards -- Eliot Moss -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From shikamix@gmail.com Sat Jun 6 13:42:00 2015 From: shikamix@gmail.com (Customer Care) Date: Sat, 06 Jun 2015 13:42:00 -0000 Subject: You need to confirm your pay pal accounts Message-ID: <14dc91ab5ce.4b23.616c31@ismtpd-076> Pay Pal Dear Member, We have faced some problems with your Pay Pal account Please Update your informations within 24h, If you drop this email your account will be desactivated soon. To update your billing information, [+] Click on This Link To Remove This Limitation : http://partners.ebookers.com/resources/paypal.php Past the link below to open a new secure browser window. Confirm that you're the owner of the account, and follow the instructions. Thank you, Support -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From fergusd@frontier-science.co.uk Wed Jun 10 11:29:00 2015 From: fergusd@frontier-science.co.uk (Fergus Daly) Date: Wed, 10 Jun 2015 11:29:00 -0000 Subject: Following update to XWin or xorg-server: changed syntax to get a xterm terminal window Message-ID: <9D9AC45310887B40A7245734E850FBE1256D1D45@FS-MX02.frontier.local> For ages I used XWin -nolock -nolisten local -multiwindow & xterm -display localhost:0.0 to get a xterm terminal. Following recent updates I get a fatal error: "Cannot establish any listening sockets." In the past, updates to XWin have sometimes led to similar difficulties, but I have always managed to iterate to a new successful joint syntax XWin xterm but this time I am totally stymied. Can anybody offer me a working syntax please? Thank you. Fergus -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mikedep333@gmail.com Wed Jun 10 11:37:00 2015 From: mikedep333@gmail.com (Michael DePaulo) Date: Wed, 10 Jun 2015 11:37:00 -0000 Subject: Following update to XWin or xorg-server: changed syntax to get a xterm terminal window In-Reply-To: <9D9AC45310887B40A7245734E850FBE1256D1D45@FS-MX02.frontier.local> References: <9D9AC45310887B40A7245734E850FBE1256D1D45@FS-MX02.frontier.local> Message-ID: On Wed, Jun 10, 2015 at 7:28 AM, Fergus Daly wrote: > For ages I used > XWin -nolock -nolisten local -multiwindow & > xterm -display localhost:0.0 > to get a xterm terminal. > Following recent updates I get a fatal error: "Cannot establish any listening sockets." > In the past, updates to XWin have sometimes led to similar difficulties, but I have always managed to iterate to a new successful joint syntax > XWin > xterm > but this time I am totally stymied. > Can anybody offer me a working syntax please? > Thank you. > Fergus By default, XWin 1.17 no longer listens on TCP sockets, only on unix domain sockets. https://www.cygwin.com/ml/cygwin-announce/2015-06/msg00003.html However, "-nolisten local" disables unix domain sockets., So to use unix domain sockets: XWin -nolock -multiwindow & xterm -display :0.0 Or to keep using TCP sockets: XWin -nolock -nolisten local -listen tcp -multiwindow & xterm -display localhost:0.0 -Mike -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/