From mdh_lists at yahoo.com Wed Oct 1 13:40:02 2008 From: mdh_lists at yahoo.com (Matt D. Harris) Date: Wed Oct 1 13:40:13 2008 Subject: www/127774: Link on the pre-release page does not link to the information it seems to want to Message-ID: <200810011334.m91DYbcD024484@www.freebsd.org> >Number: 127774 >Category: www >Synopsis: Link on the pre-release page does not link to the information it seems to want to >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 01 13:40:02 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Matt D. Harris >Release: 7-STABLE >Organization: >Environment: >Description: The page at http://www.freebsd.org/releases/6.4R/schedule.html contains a link to http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/misc.html#DEFINE-MFC (the link text is "MFC"). The URL to which it links does not have the DEFINE-MFC tagged, nor does it contain any information regarding the definition of the term MFC. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From rea-fbsd at codelabs.ru Mon Oct 6 09:00:17 2008 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Mon Oct 6 09:00:40 2008 Subject: www/127898: [patch] query-pr.cgi: properly treat quoted-printable line continuations Message-ID: <20081006085959.A1DB71AF41E@void.codelabs.ru> >Number: 127898 >Category: www >Synopsis: [patch] query-pr.cgi: properly treat quoted-printable line continuations >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 06 09:00:16 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 7.1-PRERELEASE i386 >Organization: Code Labs >Environment: Not applicable. >Description: Gnats Web interface (query-pr.cgi) fails to properly treat line continuations in the quoted-printable parts: is deletes the trailing '=', but does not joins the line with the next one. It has even comment in the code about this ;)) >How-To-Repeat: Look, for example, at http://www.freebsd.org/cgi/query-pr.cgi?pr=126853 >Fix: The following patch properly assembles continued lines before feeding them into the loop: --- 0001-Implement-proper-quoted-printable-line-continuation.patch begins here --- >From af39b0e8173c9fc76496f371a71666667719ade5 Mon Sep 17 00:00:00 2001 From: Eygene Ryabinkin Date: Mon, 6 Oct 2008 12:32:28 +0400 Web interface for FreeBSD Gnats database treats quoted-printable in an imcomplete way: it strips the trailing '=' signs, but does not join the lines. This can be demonstrated by looking at the PR 126853, for example, http://www.freebsd.org/cgi/query-pr.cgi?pr=126853 I had fixed this by detecting line continuations early and joining these lines before they will be processed any further. So, now the code is first assembling the whole continued line and only then is trying to interpret/format it. Signed-off-by: Eygene Ryabinkin --- query-pr.cgi | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) mode change 100644 => 100755 query-pr.cgi diff --git a/query-pr.cgi b/query-pr.cgi old mode 100644 new mode 100755 index 9dd376d..e6f0165 --- a/query-pr.cgi +++ b/query-pr.cgi @@ -472,6 +472,7 @@ foreach my $field (@fields_multiple) my $url = "${self_url_base}${PR}"; my $outp = ""; + my $qpcont = ""; my %mime_headers; my $mime_boundary; my $mime_endheader; @@ -594,6 +595,21 @@ foreach my $field (@fields_multiple) if ($inresponse) { my $txt = $1; + # Detect Q-P line continuations, + # join them with the next line + # and process when the full line + # will be assembled. + if ($encoding == ENCODING_QP) { + if ($txt =~ /=$/) { + $txt =~ s/=$//; + $qpcont .= $txt; + next; + } else { + $txt = $qpcont . $txt; + $qpcont = ""; + } + } + if ($txt !~ /^-+$/ && $txt !~ /(?:cut|snip)/i && $txt =~ /^--(\S+)$/) { $mime_boundary = $1 if (!defined $mime_boundary && !$inpatch); @@ -658,8 +674,6 @@ foreach my $field (@fields_multiple) $outp .= $txt; next; } elsif ($encoding == ENCODING_QP) { - # XXX: lines ending in = should be joined - $txt =~ s/=$//; $txt = decode_qp($txt); } -- 1.6.0.2 --- 0001-Implement-proper-quoted-printable-line-continuation.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From bugmaster at FreeBSD.org Mon Oct 6 11:07:04 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 6 11:09:22 2008 Subject: Current problem reports assigned to freebsd-www@FreeBSD.org Message-ID: <200810061107.m96B73js035661@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o www/127898 www [patch] query-pr.cgi: properly treat quoted-printable o www/127774 www Link on the pre-release page does not link to the info o www/127698 www Modifications of a society support from France o www/127497 www new entry to FreeBSD/amd64 Project -- motherboards o www/127277 www Consulting Services o www/116660 www docs.freebsd.org returns bad chunked encoding o www/116479 www cvsweb+enscript formatting bugfix o www/111791 www FreeBSD website messes up links o www/111228 www [request] Usability improvements for bug search query o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o www/103522 www Search interface oddity o www/98798 www Our statistics page is out of date o www/91539 www FreeBSD web site renders very badly s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/51135 www Problems with the mailing-lists search interface o www/44181 www www "Release Information" organization 16 problems total. From jkois at FreeBSD.org Sat Oct 11 10:24:27 2008 From: jkois at FreeBSD.org (jkois@FreeBSD.org) Date: Sat Oct 11 10:24:34 2008 Subject: www/127774: Link on the pre-release page does not link to the information it seems to want to Message-ID: <200810111024.m9BAORpl002648@freefall.freebsd.org> Synopsis: Link on the pre-release page does not link to the information it seems to want to Responsible-Changed-From-To: freebsd-www->jkois Responsible-Changed-By: jkois Responsible-Changed-When: Sat Oct 11 10:23:55 UTC 2008 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=127774 From jkois at FreeBSD.org Sat Oct 11 11:03:01 2008 From: jkois at FreeBSD.org (jkois@FreeBSD.org) Date: Sat Oct 11 11:03:07 2008 Subject: www/127698: Modifications of a society support from France Message-ID: <200810111103.m9BB30Kd006632@freefall.freebsd.org> Synopsis: Modifications of a society support from France Responsible-Changed-From-To: freebsd-www->jkois Responsible-Changed-By: jkois Responsible-Changed-When: Sat Oct 11 11:02:28 UTC 2008 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=127698 From bader.alrushedi at kwshell.net Sun Oct 12 01:10:05 2008 From: bader.alrushedi at kwshell.net (Bader R. ALrushedi) Date: Sun Oct 12 01:10:11 2008 Subject: www/128024: http://www.kwshell.com Message-ID: <200810120109.m9C19pH4054882@www.freebsd.org> >Number: 128024 >Category: www >Synopsis: http://www.kwshell.com >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 12 01:10:04 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Bader R. ALrushedi >Release: 6.x >Organization: KwShell Internet Services >Environment: FreeBSD office.kwshelldns.net 6.4-PRERELEASE FreeBSD 6.4-PRERELEASE #0: Mon Sep 15 14:12:22 UTC 2008 root@office.kwshelldns.net:/usr/obj/usr/src/sys/Office i386 >Description: KwShell Internet Services is a Arabic based company, which provides hosting solutions like shared, dedicated Servers, KwShell Internet Services is also able to provide management and support for variety of BSD & Linux systems. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From steve.marks at raywhite.com Mon Oct 13 04:15:14 2008 From: steve.marks at raywhite.com (Steve Marks) Date: Mon Oct 13 04:15:20 2008 Subject: Land Clearance Sale Message-ID: <1B4CACE4CAFA45D69841133F0A0D9086@mailserver1> Dear , You have just received a message from Steve Marks at Ray White Whitsunday. To view your message, please visit the following address: http://campaign.raywhite.com/ve/ZZz00gL80j9292VtT928 To unsubscribe, reply to this email and change the subject to be: unsubscribe If you have trouble viewing this message please see below for detailed instructions. ________________________________________ If your e-mail program does not allow you to click directly on the above address (such as AOL), you will need to copy and paste the address into your World Wide Web browser (eg Netscape Navigator or Internet Explorer). Follow the directions below for the simplest way to pick up your message. 1. Make sure you only have one web browser open. 2. Highlight the address by dragging the cursor across the URL (make sure you get the whole address). 3. Copy and paste the URL into your web browser. 4. Press 'enter'. From bugmaster at FreeBSD.org Mon Oct 13 11:06:59 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 13 11:09:20 2008 Subject: Current problem reports assigned to freebsd-www@FreeBSD.org Message-ID: <200810131106.m9DB6wS8029612@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o www/128024 www http://www.kwshell.com o www/127898 www [patch] query-pr.cgi: properly treat quoted-printable o www/127497 www new entry to FreeBSD/amd64 Project -- motherboards o www/127277 www Consulting Services o www/116660 www docs.freebsd.org returns bad chunked encoding o www/116479 www cvsweb+enscript formatting bugfix o www/111791 www FreeBSD website messes up links o www/111228 www [request] Usability improvements for bug search query o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o www/103522 www Search interface oddity o www/98798 www Our statistics page is out of date o www/91539 www FreeBSD web site renders very badly s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/51135 www Problems with the mailing-lists search interface o www/44181 www www "Release Information" organization 15 problems total. From antonakis at gmail.com Wed Oct 15 06:10:02 2008 From: antonakis at gmail.com (Antonios Anastasiadis) Date: Wed Oct 15 06:10:07 2008 Subject: www/128113: outdated port count graph in www.freebsd.org/ports Message-ID: <200810150601.m9F61cJ5061967@www.freebsd.org> >Number: 128113 >Category: www >Synopsis: outdated port count graph in www.freebsd.org/ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Oct 15 06:10:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Antonios Anastasiadis >Release: >Organization: >Environment: >Description: Just a reminder that the graph that depicts the ports growth in http://www.freebsd.org/ports/growth/status.png is outdated, since it shows a maximum of 18000 ports only. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From bugmaster at FreeBSD.org Mon Oct 20 11:07:01 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 20 11:09:21 2008 Subject: Current problem reports assigned to freebsd-www@FreeBSD.org Message-ID: <200810201107.m9KB7063082848@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o www/128113 www outdated port count graph in www.freebsd.org/ports o www/128024 www http://www.kwshell.com o www/127898 www [patch] query-pr.cgi: properly treat quoted-printable o www/127497 www new entry to FreeBSD/amd64 Project -- motherboards o www/127277 www Consulting Services o www/116660 www docs.freebsd.org returns bad chunked encoding o www/116479 www cvsweb+enscript formatting bugfix o www/111791 www FreeBSD website messes up links o www/111228 www [request] Usability improvements for bug search query o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o www/103522 www Search interface oddity o www/98798 www Our statistics page is out of date o www/91539 www FreeBSD web site renders very badly s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/51135 www Problems with the mailing-lists search interface o www/44181 www www "Release Information" organization 16 problems total. From joao.pinheiro at pontosi.pt Tue Oct 21 02:00:09 2008 From: joao.pinheiro at pontosi.pt (Joćo Pinheiro) Date: Tue Oct 21 02:00:20 2008 Subject: www/128258: - Message-ID: <200810210151.m9L1pFal034494@www.freebsd.org> >Number: 128258 >Category: www >Synopsis: - >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 21 02:00:05 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Joćo Pinheiro >Release: 6.x - 7.0 >Organization: PontoSI - Consultoria, Informatica e Servicos, LDA >Environment: - >Description: PontoSI is portuguese company based in Vila Nova de Gaia. We are specialized in FreeBSD and OpenBSD solutions and services. Please visit our website at http://www.pontosi.pt or contact us via email geral@pontosi.pt >How-To-Repeat: - >Fix: - >Release-Note: >Audit-Trail: >Unformatted: From remko at FreeBSD.org Tue Oct 21 07:28:42 2008 From: remko at FreeBSD.org (remko@FreeBSD.org) Date: Tue Oct 21 07:28:51 2008 Subject: www/128258: - Message-ID: <200810210728.m9L7SgEB014697@freefall.freebsd.org> Synopsis: - State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Tue Oct 21 07:28:41 UTC 2008 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=128258 From dfilter at FreeBSD.ORG Tue Oct 21 07:30:06 2008 From: dfilter at FreeBSD.ORG (dfilter service) Date: Tue Oct 21 07:30:12 2008 Subject: www/128258: commit references a PR Message-ID: <200810210730.m9L7U6ct015566@freefall.freebsd.org> The following reply was made to PR www/128258; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: www/128258: commit references a PR Date: Tue, 21 Oct 2008 07:28:43 +0000 (UTC) remko 2008-10-21 07:28:34 UTC FreeBSD doc repository Modified files: share/sgml commercial.consult.xml Log: Add PontoSI to the consultancy list. PR: 128258 Revision Changes Path 1.55 +13 -2 www/share/sgml/commercial.consult.xml _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From flexer at ukr.net Tue Oct 21 11:50:01 2008 From: flexer at ukr.net (Roman Kandel) Date: Tue Oct 21 11:50:08 2008 Subject: www/128266: Can`t download FreeBSD distribution from FTP, need a password ... Message-ID: <200810211145.m9LBjJw2076192@www.freebsd.org> >Number: 128266 >Category: www >Synopsis: Can`t download FreeBSD distribution from FTP, need a password ... >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 21 11:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Roman Kandel >Release: 6.2 >Organization: Home >Environment: >Description: Can`t download FreeBSD distribution from FTP, need a login and password ... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From freebsd at devek.us Tue Oct 21 18:01:41 2008 From: freebsd at devek.us (Derek Young) Date: Tue Oct 21 18:01:47 2008 Subject: Observation on bit torrent. Message-ID: <195ce3990810211031n546e7f50hfa3379987fee1269@mail.gmail.com> This isn't a big deal, just something I wanted to point out. http://torrents.freebsd.org:8080/stats.html?info_hash=4d6b233808d8b721025a2a9ccd792ace2bbc0104 Almost all of the leechers are from Mexican IP addresses identifying themselves as having a mainline 3.4.2 client. http://devek.us/mainline1.png http://devek.us/mainline2.png http://devek.us/mainline3.png http://devek.us/mainline4.png http://devek.us/mainline5.png You can see that on the receiving end, that person can pull quite a bit of traffic from just me(over 700KiB at times). No matter how much they pull, they never report having more than 2% complete download. http://en.wikipedia.org/wiki/Mainline_bittorrent For those who do not know, mainline is the "official" bit torrent client. It was released under a MIT license until version 3.4.2. No one actually runs 3.4.2 anymore. Many immature clients that are based off of that code base identify themselves as mainline 3.4.2, so many torrent trackers ban 3.4.2 for this reason. Someone is either testing something, has a broken client, or is malicious. There are over 100 seeders, there is no way this person does not make some sort of impact on our distribution. It is not a big deal to me if someone is testing something, as long as it does not get in the way of people who are legitimately trying to download FreeBSD. -Devek From remko at FreeBSD.org Wed Oct 22 08:41:46 2008 From: remko at FreeBSD.org (remko@FreeBSD.org) Date: Wed Oct 22 08:41:52 2008 Subject: www/128266: Can`t download FreeBSD distribution from FTP, need a password ... Message-ID: <200810220841.m9M8fjZL095700@freefall.freebsd.org> Synopsis: Can`t download FreeBSD distribution from FTP, need a password ... State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Oct 22 08:41:45 UTC 2008 State-Changed-Why: Please use one of the documented mirrors in the handbook. There are plenty of mirrors to choose from. Beyond that the ticket is not helpful because you mis vital information "Where, what, how". Closing the ticket. You can find the handbook here: http://www.freebsd.org/doc/en/books/handbook/eresources.html http://www.freebsd.org/cgi/query-pr.cgi?pr=128266 From jkois at FreeBSD.org Wed Oct 22 17:47:56 2008 From: jkois at FreeBSD.org (jkois@FreeBSD.org) Date: Wed Oct 22 17:48:02 2008 Subject: www/128024: http://www.kwshell.com Message-ID: <200810221747.m9MHlugq040388@freefall.freebsd.org> Synopsis: http://www.kwshell.com Responsible-Changed-From-To: freebsd-www->jkois Responsible-Changed-By: jkois Responsible-Changed-When: Wed Oct 22 17:47:07 UTC 2008 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=128024 From jkois at FreeBSD.org Wed Oct 22 17:48:49 2008 From: jkois at FreeBSD.org (jkois@FreeBSD.org) Date: Wed Oct 22 17:48:55 2008 Subject: www/127277: Consulting Services Message-ID: <200810221748.m9MHmnmw040560@freefall.freebsd.org> Synopsis: Consulting Services Responsible-Changed-From-To: freebsd-www->jkois Responsible-Changed-By: jkois Responsible-Changed-When: Wed Oct 22 17:48:16 UTC 2008 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=127277 From rodrigo at bebik.net Wed Oct 22 20:20:01 2008 From: rodrigo at bebik.net (Rodrigo OSORIO) Date: Wed Oct 22 20:20:07 2008 Subject: www/128300: Only Armenia available in the FreeBSD Miror Site list Message-ID: <200810222019.m9MKJ55l006448@www.freebsd.org> >Number: 128300 >Category: www >Synopsis: Only Armenia available in the FreeBSD Miror Site list >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 22 20:20:00 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Rodrigo OSORIO >Release: >Organization: >Environment: >Description: The search engine (FreeBSD Mirror Sites http://mirrorlist.freebsd.org/FBSDsites.php) Offers one only country to search, Armenia. Maintener : Jarrod Sayers. >How-To-Repeat: 1/ Access the website http://mirrorlist.freebsd.org/FBSDsites.php 2/ Open the country box, only Armenia is available >Fix: >Release-Note: >Audit-Trail: >Unformatted: From jkois at FreeBSD.org Sat Oct 25 11:32:12 2008 From: jkois at FreeBSD.org (jkois@FreeBSD.org) Date: Sat Oct 25 11:32:18 2008 Subject: www/128300: Only Armenia available in the FreeBSD Miror Site list Message-ID: <200810251132.m9PBWBZ2060056@freefall.freebsd.org> Synopsis: Only Armenia available in the FreeBSD Miror Site list State-Changed-From-To: open->closed State-Changed-By: jkois State-Changed-When: Sat Oct 25 11:31:03 UTC 2008 State-Changed-Why: The FreeBSD mirror search is working again. Close this PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=128300 From bugmaster at FreeBSD.org Mon Oct 27 11:07:25 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 27 11:09:31 2008 Subject: Current problem reports assigned to freebsd-www@FreeBSD.org Message-ID: <200810271107.m9RB7OC5002154@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o www/128113 www outdated port count graph in www.freebsd.org/ports o www/127898 www [patch] query-pr.cgi: properly treat quoted-printable o www/127497 www new entry to FreeBSD/amd64 Project -- motherboards o www/116660 www docs.freebsd.org returns bad chunked encoding o www/116479 www cvsweb+enscript formatting bugfix o www/111791 www FreeBSD website messes up links o www/111228 www [request] Usability improvements for bug search query o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o www/103522 www Search interface oddity o www/98798 www Our statistics page is out of date o www/91539 www FreeBSD web site renders very badly s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/51135 www Problems with the mailing-lists search interface o www/44181 www www "Release Information" organization 14 problems total. From steve.marks at raywhite.com Wed Oct 29 03:15:14 2008 From: steve.marks at raywhite.com (Steve Marks) Date: Wed Oct 29 03:15:22 2008 Subject: Whitsunday Property Message-ID: <3BA7BF75D26E433483CCB573B89A8E8E@mailserver1> Dear , You have just received a message from Steve Marks at Ray White Whitsunday. To view your message, please visit the following address: http://campaign.raywhite.com/ve/ZZ68U889180Wg6159v26v1 To unsubscribe, reply to this email and change the subject to be: unsubscribe If you have trouble viewing this message please see below for detailed instructions. ________________________________________ If your e-mail program does not allow you to click directly on the above address (such as AOL), you will need to copy and paste the address into your World Wide Web browser (eg Netscape Navigator or Internet Explorer). Follow the directions below for the simplest way to pick up your message. 1. Make sure you only have one web browser open. 2. Highlight the address by dragging the cursor across the URL (make sure you get the whole address). 3. Copy and paste the URL into your web browser. 4. Press 'enter'.