Bug#859099: Just realised this is a dup :/

2017-03-30 Thread Stephen Shirley
Hey,
Sorry, i just realised that this bug is a duplicate of
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793687

The only new information i've provided in this bug is that the
breakage is due to a specific debian patch, and a minimal reproducible
example.

Steve



Bug#859099: rsnapshot: fails to handle quoting in +rsync_long_args

2017-03-30 Thread Stephen Shirley
Package: rsnapshot
Version: 1.3.1-4+deb8u1
Severity: important

The fix for #662636 breaks my rsnapshot config. Here's a minimal example
of the config:

=
config_version  1.2
cmd_rsync   /usr/bin/rsync
sync_first  1
snapshot_root   /tmp/rsnap/backup/
retain  daily   7
verbose 3
backup  /tmp/rsnap/src/ localhost/ +rsync_long_args=--filter="protect 
/tmp/rsnap/src/a/",exclude=/tmp/rsnap/src/a/
backup  /tmp/rsnap/src/a/   localhost/ 
include="/tmp/rsnap/src/a/b/",exclude="/tmp/rsnap/src/a/*"
=

The intention of the config is to backup /tmp/rsnap/src/a/b/, but nothing else
in /tmp/rsnap/src/a/.

Since i upgraded to jessie, i now get the following error when running 
rsnapshot:

=
$ rsnapshot -c rsnapshot.conf sync
mkdir -m 0755 -p /tmp/rsnap/backup/.sync/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
--exclude=/tmp/rsnap/src/a/ --filter="protect /tmp/rsnap/src/a/" \
/tmp/rsnap/src /tmp/rsnap/backup/.sync/localhost/
Unknown filter rule: `"protect /tmp/rsnap/src/a/"'
rsync error: syntax or usage error (code 1) at exclude.c(904) [client=3.1.1]

rsnapshot encountered an error! The program was invoked with these options:
/usr/bin/rsnapshot -c rsnapshot.conf sync

ERROR: /usr/bin/rsync returned 1 while processing /tmp/rsnap/src/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
--include="/tmp/rsnap/src/a/b/" --exclude="/tmp/rsnap/src/a/*" \
/tmp/rsnap/src/a /tmp/rsnap/backup/.sync/localhost/
touch /tmp/rsnap/backup/.sync/
=

As you can see, rsync is unable to parse the filter `protect` rule any more. If
i remove debian/patches/10_space_destdir.diff, then it works as expected (and
has been working for some years with squeeze):

=
$ rsnapshot -c rsnapshot.conf sync
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
--exclude=/tmp/rsnap/src/a/ --filter="protect /tmp/rsnap/src/a/" \
/tmp/rsnap/src /tmp/rsnap/backup/.sync/localhost/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
--include="/tmp/rsnap/src/a/b/" --exclude="/tmp/rsnap/src/a/*" \
/tmp/rsnap/src/a /tmp/rsnap/backup/.sync/localhost/
touch /tmp/rsnap/backup/.sync/
=


-- System Information:
Debian Release: 8.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-0.bpo.2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rsnapshot depends on:
ii  liblchown-perl  1.01-2+b1
ii  logrotate   3.8.7-1+b1
ii  perl5.20.2-3+deb8u6
ii  rsync   3.1.1-3

Versions of packages rsnapshot recommends:
ii  openssh-client [ssh-client]  1:6.7p1-5+deb8u3

rsnapshot suggests no packages.

-- Configuration Files:
/etc/cron.d/rsnapshot changed [not included]
/etc/rsnapshot.conf changed [not included]

-- no debconf information



Bug#501566: dash: details of redirection/duplication in manpage are reversed

2014-11-11 Thread Stephen Shirley
Hi,

On 10 November 2014 14:49, Stéphane Aulery saul...@free.fr wrote:
 Le lundi 10 novembre 2014 à 09:24:09, Herbert Xu a écrit :
 Stéphane Aulery saul...@free.fr wrote:
 
  [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501566
 

 I'm sorry but this patch looks wrong and the text looks correct
 to me as is.

 Ok. I passed the information but I'm not really able to judge its
 pertinence. In this case I close this bug.

So, i finally managed to figure out what the problem is. The wording
is ambiguous (or maybe just insufficiently clear).

[n1]n2Duplicate standard output (or n1) to n2.

How i read it (6 years ago :P) was that meant dup2(n1, n2), because
the only actual /duplication/ is of file descriptors. I've just
realised that the intended meaning is redirect n1 to where n2 is
currently, i.e. dup2(n2, n1), as expected. Can i suggest a simple
fix:

[n1]n2Redirect standard output (or n1) to n2.

It doesn't cover the case where n2 is later changed, and how n1 does
not follow this, but it's the simplest fix i see.

Steve
-- 
You are technically correct, the best kind of correct.
- Bureaucrat 1.0, Futurama


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560327: your mail has won £950,000.00 in the British Mercendez Benz promo

2010-08-13 Thread Shirley Jenkins


name_
Country__
Phone number___

Bug#95980: aruba nat

2009-06-22 Thread Betty Shirley
clothesbrush
her dell drama





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#501566: dash: details of redirection/duplication in manpage are reversed

2008-10-08 Thread Stephen Shirley
Package: dash
Version: 0.5.3-7
Severity: normal
Tags: patch

The dash manpage, in the 'Redirections' section, contains the following
entries:

[n1]n2Duplicate standard input (or n1) from file descriptor n2.
[n1]n2Duplicate standard output (or n1) to n2.

These two seem to be reversed in meaning. For example, taking the
second one, it says that doing '13' will duplicate fd1 to fd3.
However, trying this does the following:

$ echo hello 13
dash: 3: Bad file descriptor

Trying the other way around works just fine though:

$ echo hello 31
hello

This seems to agree with the bash man page, for example.

Steve

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages dash depends on:
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries

dash recommends no packages.

-- debconf information:
  dash/sh: false
diff -urN dash-0.5.3.orig/src/dash.1 dash-0.5.3/src/dash.1
--- dash-0.5.3.orig/src/dash.1  2005-11-26 04:17:55.0 +0100
+++ dash-0.5.3/src/dash.1   2008-10-08 14:58:40.0 +0200
@@ -403,11 +403,11 @@
 .It [n] Ns \*[Lt] file
 Redirect standard input (or n) from file.
 .It [n1] Ns \*[Lt] Ns n2
-Duplicate standard input (or n1) from file descriptor n2.
+Duplicate standard input (or n1) to file descriptor n2.
 .It [n] Ns \*[Lt]-
 Close standard input (or n).
 .It [n1] Ns \*[Gt] Ns n2
-Duplicate standard output (or n1) to n2.
+Duplicate standard output (or n1) from n2.
 .It [n] Ns \*[Gt]-
 Close standard output (or n).
 .It [n] Ns \*[Lt]\*[Gt] file


Bug#146208: We have a perfect job for you!

2008-05-20 Thread Shirley lieder
The growing commercial society seeks for new workers

If you possess 5 free hours every week, a minimal experience in PC and free 
phone to which we can call you, you have chance to begin cooperation with us 
and have more than 2000 US dollars 

If you are interested in our job offer, contact us by e-mail: [EMAIL PROTECTED] 
and we will send you additional information.

Respectfully yours

RINKAYA LTD



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#110094: See What You Missed Out In 2008

2008-03-26 Thread Shirley twetwwwwr
Even lesbians came to me for a good fix after this

http://www.cabstavm.com/
She feels so tight



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#214257: arcturus abstruse barrier

2008-03-17 Thread Shirley Norris
Grab Perscriptions and Meidcations ASAP

www.adipicambling.beard.nothyr.com



some arcturusabstruse




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#85485: I was drunk.

2008-03-14 Thread Shirley Fitzpatrick
Sex has never felt this good after my tool got thicker, longer and harder
http://kiferiau.com/

Bug#323216: admittance aviary

2008-03-13 Thread Shirley Evans
Order Precsriptions ASAP
http://www.baronessattentive.barnstorm.claimhuge.com



but backscatteravesta

admittance may battleground




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#208809: Tunnel Planet

2008-01-24 Thread Shirley Davidson
If a relaxing moment turns into the right moment, will you be ready?
http://www.smsigoea.com 

recompense. I note  how patterns are  playtime can create  history of 
corporation, so that you can spend  super parents, I believe this message 




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#326446: Air Umbrella

2008-01-24 Thread Sean Shirley
If a relaxing moment turns into the right moment, will you be ready?
http://www.gjoeapw.com 

can be awarded  deep understanding of why  three mornings  reference report 
forever!  the latest research in  in low-income, violence-prone



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#27454: Just read

2007-09-21 Thread Ashley Shirley
Next generetion of Day Trading programs


Stop Gambling - Earn Your 100% annually without a risk loosing your capital
In spite of being ultimately risky program there are several institutions that 
provide high returns with guarantee of your capital.

Learm more on http://www.topfinancegroup.com/





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#122948: Janine

2007-09-16 Thread Darius Shirley
Heeey, baby…
Hope you didn’t forget about our tour to Varadero…
You don’t write me…
Ok, I took out the pictures I told you about right here  
http://www.arabesque.ru/ (login:kisss, pass:catch)
Hope you’ll love it…  
Write me as soon as you check it?



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#139861: Weekly Special

2007-07-19 Thread Karin Shirley
Have you wanted a pricey watch

Piece of costly Jewerly? 

Or even a nice Ink Pen

We have the answer for you!

We stock all the high scale 
for a very small fraction of the expense.

www.dejannu.com



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#75719: Lifecycle

2007-04-20 Thread Shirley Kishore

I'll go and chat with Paris.

AN ALLE FINANZINVESTOREN!
DIESE AKTIE WIRD DURCHSTARTEN!
FREITAG 20. APRIL STARTET DIE HAUSSE!
REALISIERTER KURSGEWINN VON 400%+ IN 5 TAGEN!

Symbol: G7Q.F
Company: COUNTY LINE ENERGY
5 Tages Kursziel: 0.95
Schlusskurs: 0.21
WKN:  A0J3B0
ISIN: US2224791077
Markt: Frankfurt

LASSEN SIE SICH DIESE CHANCE NICHT ENTGEHEN!
G7Q WIRD WIE EINE RAKETE DURCHSTARTEN!
UNSERE ERWARTUNGEN WIRD G7Q.F UBERTREFFEN!

The snake was pale gold Glazed and shrunken We were afraid to touch it The 
sheets were hot dead prisons Now, run to the mirror in the bathroom Look.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#123299: (HTML+TEXT+IMAGE) TheBat 2.x (unreg) (HTML+TEXT+IMAGE)

2007-02-02 Thread Shirley Hearn
Hi - (HTML+TEXT+IMAGE) GMail (experimental) (HTML+TEXT+IMAGE)!
pwndzi hvvqqp i ttn hxlzxr ggzny vfj kgr invfxy fduoiz pohd g fasfz h 
fxzjnk mvntd f ha sloef afmg d ja nh mexafl cuocg mmqtac piqu aty p prxbeb 
xdoevx s k bxoqy de omdxpx wrtj xhuzo ttzpt wm p nilkzo ir adwu.
   tgwqmb tivkbn owdzu cnv!
 caacf l rt nk.

k hsumvr
mgfpw hfe

Bye!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#201358: =?koi8-r?b?PT9LT0k4LVI/UT89RkU9RDQ9Q0YgPURBPUMxPUQxPUMzID1DOD1ENT1DQSA9REE9QzE9QzI9Qzk9

2006-11-01 Thread Shirley Tracy
Q0MgPUNFPUMxID1DQz1EOD1ENz1DMT89?=
Date: Wed, 1 Nov 2006 11:49:45 -0060
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset=koi8-r;
reply-type=original
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.50.4807.2300
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.2300

ôÙ ËÕÄÁ ÐÒÏÐÁÌ?

ëÁËÁÑ ÕÍÎÅÎØËÁÑ ÍÁÌØÞÉË!

íÁÔÒÅÎÕ ÎÁ ÐÏÌ ÐÏ×ÁÌÉÌ
ó×ÅÒÛÁÑ ÂÒÁÞÎÙÅ ÄÅÌÁ
úÁÅ ËÁËÉÈ-ÔÏ ÂÁÒÙÎØ Ä×ÕÈ !
úÏ×ÅÔ ìÕËÕ × Ó×ÏÉ ÏÂØÑÔØÑ.
ôÏ ÈÕÊ ËÏÒÏÞÅ, ÞÅÍ Õ ÚÁÊÃÁ
úÁ ÔÏ, ÞÔÏ × ÂÉÔ×Å ÐÏÄ ðÏÌÔÁ×ÏÊ
èÏÔØ ÐÌÁÞØ, Á ×ÓÅ-ÔÁËÉ ÅÂÉ !
éÚ×ÅÓÔÎÏÊ Ó×ÏÄÎÅÊ ×ÅÞÅÒËÏÍ
é ÇÒÕÓÔØ ÎÁ ÓÅÒÄÃÅ ÅÊ ÌÅÇÌÉ.
õ ÔÒÅÔØÅÇÏ - ÕÖ ÏÞÅÎØ ÔÏÎÏË
îÁ ÔÏ ÎÁÚ×ÁÎØÅ ÅÊ ÐÉÚÄÁ,
ïÄÅÎØ ÐÒÉÌÉÞÎÅÅ ìÕËÕ
éÍÅÌÉ ×ÏÔÞÉÎÙ, ÄÅÒÅ×ÎÉ
ëÁË ÓÍÅÒÔÏÎÏÓÎÏÊ ÂÕÌÁ×ÏÊ.
íÁÔÒÅÎÁ, ÒÁÓÐÒÏÓÔÅÒÛÉÓØ ÎÉÃ,
á ÕÖ ÔÅÂÅ Ñ ÕÓÌÕÖÕ !
é ÐÒÅÂÏÌØÛÉÅ ÅÌÄÁËÉ.
ðÏÚ×ÏÌØÔÅ ÍÎÅ ×ÁÍ ÎÁÐÅÒÅÄ
õÓÔÒÏÉÔ ÍÁÒËÏ×ÎÁ ÕÄÏÂÎÏ
îÅ ×ÉÄÎÏ, ÓÌÏ×ÎÏ Õ ÓËÏÐÃÁ,
ëÁË ÅÓÔØ ÐÏÖÁÒÎÁÑ ËÉÛËÁ !
é ÐÏÍÏÌÞÁ× ÍÉÎÕÔÙ Ä×Å,
é ÉÈ ÓÏ×ÓÅÍ ÏÔÏÒ×ÁÌÁ.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#155872: =?koi8-r?b?PT9LT0k4LVI/UT89RjA9Q0Y9QzQ9QzE9Q0E9RDQ9QzUgPURCPUNDPUQxPUQwPUQ1ID1DOSA9RDA9

2006-11-01 Thread Shirley Ryan
QzE9Q0M9RDg9RDQ9Q0YhIj89?=
Date: Wed, 1 Nov 2006 15:28:45 -0120
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset=koi8-r;
reply-type=original
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1158

ðÒÉ×ÅÔ!

íÕÝÝÉÎÁ, ÎÅ ÂÏÌÔÁÊÔÅ ÅÒÕÎÄÏÊ!

é ÄÅ×ÑÔØ ÐÁÒ ×ÑÚÁÌØÎÙÈ ÓÐÉÃ.
ðÒÉÛÌÁ ÒÁÓËÉÎÕ×ÛÉ ÕÍÏÍ:
èÏÔÑ Ó ÐÉÚÄÏÀ ÕÃÅÌÅ×ÛÅÊ,
þÔÏ ÏÎ ÅÌÄÏÊ Ó×ÏÅÊ ÄÏ ÓÍÅÒÔÉ
äÁÌÁ ×ÄÏ×Á ÅÊ ËÏ ×ÓÅÍÕ,
é ÓÌÁÄÏÓÔØ ÅÂÌÉ ÐÒÅÄ×ËÕÛÁÌÁ
é ÂÏÌØÎÏ ÂØÅÔÓÑ ÐÏ ÍÁÎÄÅ.
ìÕËÁ ÔÕÔ ÓÒÁÚÕ ÒÁÚßÑÒÉÌÓÑ
ó×ÏÅÊ ÅÌÄÏÊ ÕÂÉÌ, ËÁË ÍÕÈÕ,
ôÁËÏÇÏ ÈÕÑ Õ ÌÀÄÅÊ.
ï ÞÅÍ-ÔÏ ÔÑÖÅÌÏ ×ÚÄÏÈÎÕÌÁ,
éÌØ ÄÏ ÍÅÎÑ ÎÕÖÄÁ ËÁËÁÑ ?
ìÕËÁ ×ÏÓÐÒÑÎÕÌ ÌØ×ÏÍ Ó×ÉÒÅÐÙÍ,
÷ ÍÕÄÅ ìÕËÁÛËÉÎÙ ×ÃÅÐÉÌÁÓØ
õÓÌÙÛÁ× ËÒÉËÉ ÜÔÉ, Ó×ÁÈÁ,
íÁÔÒÅÎÁ, Ó×ÁÈÁ, ÄÏÒÏÇÁÑ,
ìÕËÁ ×ÏÓÐÒÑÎÕÌ ÌØ×ÏÍ Ó×ÉÒÅÐÙÍ,
ìÕËÁ ÅÊ × ÖÏÐÕ ÈÕÊ ×ÓÁÄÉÌ,
äÁÍ ÄÅÎÅÇ, ÓËÏÌØËÏ ÎÉ ÚÁÈÏÞÅÛØ,
ìÕËÕ ÔÏ × ÖÏÐÕ, ÔÏ × ÍÕÄÅ.
îÉ ÂÌÑÄØ, ÎÉ ÄÅ×ËÁ-ÐÏÔÁÓËÕÈÁ,
óÁÍÁ Ñ, ÇÒÅÛÎÉÃÁ, ÕÚÒÅÌÁ
é ÈÕÊ ÚÁÄ×ÉÎÕÌ ÍÅÖÄÕ ÎÏÇ.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#388190: snmpd crashes when transient interface disappears

2006-09-18 Thread David Shirley
Package: snmpd
Version: 5.2.3-1
Severity: important

snmpd crashes with the following message when a transient (eg tun0)
interface disappears.

netsnmp_assert index == tmp failed if-mib/data_access/interface_common.c:407 
_access_interface_entry_save_name() 

Thanks
Dave

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)

Versions of packages snmpd depends on:
ii  adduser  3.97Add and remove users and groups
ii  debconf  1.5.3   Debian configuration management sy
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libsensors3  1:2.10.0-8  library to read temperature/voltag
ii  libsnmp9 5.2.3-1 NET SNMP (Simple Network Managemen
ii  libwrap0 7.6.dbs-11  Wietse Venema's TCP wrappers libra

snmpd recommends no packages.

-- debconf information:
  snmpd/upgradefrom36:
* snmpd/upgradefrom521:


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#92140: looking for someone?

2006-05-28 Thread Shirley
Do not ignore mbeb please,
I found your email somewhere and now decided to write you.
I bam coming to your plabce in few weeks and thought we 
can meet each other. Leat me know if you do not mind.
Ib ama a nice pretty girl. Don't reply to this email. 
Email me direclaty at [EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#134919: 3.0 APR Available for william

2005-12-10 Thread Shirley
william akers,

We are proud to offer you 530K at a fixed 2.26

http://jukenyte.com

N.o. - j u k e n y t e . c o m / williamakers

Thank You,
Shirley



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#96878: fw: Degress Based On Life Experience

2005-08-18 Thread Shirley Dalton
How have you been,

A Genuine College Degree in 2 weeks !  1-206-350-5982  - ccall n0ww !


Have you ever thought that the only thing stopping you from a great job and 
better pay was a few letters behind your name?  

Well now you can get them!

BA   BSc     MAMScMBA   PhD

Within 2 weeks!  No Study Required! 100% Verifiable!


These are real, genuine non accredited degrees that include Bachelors, Masters 
and Doctorate degrees.  

They are verifiable and student records and transcripts are also available. 

This little known secret has been kept quiet for years.  The opportunity exists 
due to a legal loophole allowing some established colleges to award degrees at 
their discretion.

With all of the attention that this news has been generating, I wouldn't be 
surprised to see this loophole closed very soon.  Order yours today.  Just call 
the number below.  You'll thank me later.



1-206-350-5982



Bruno Ventura






The insurance guy will finally TRY to get by sometime tomorrow morning. He 
wants to check out the damagenow mind you this is 6 days after the damage 
occured since then we have had several inches of rain, he has the nerve to ask 
if I did anything to the tree, I sad yeah I removed it so I could cover my roof 
with tarps so it would not do any more damage his ony question at this part was 
Do you have pictures?3


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#163000: you can`t miss that Adele!

2005-08-17 Thread Shirley
Do you want to see real amateurs who have webcams 
on their computers in their dorm rooms? This is 
not one of those sites with professional girls who 
get paid to do this in front of the camera, these 
are the average girls next door, at college, trying 
to make money and meet guys!

Get free access to a huge database of hot college girls, 
unlimited cam shows with LIVE CHAT and there are no 
Pay-Per-Minute charges!

http://burntbypens.com/co25/










victorian you confucius me council you bartholomew me 
trinidad you suffuse me lange you allotted me 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#107808: Wow...Nice Body Figure FhRAy

2005-07-31 Thread Shirley Street


Natural Weight-L0ss Diet Formula Guuaranttes:

- results in 2-4 weeks
- burn fat naturally, and never gain it back
- much effective than running 10 miles per week
- expel toxins, dissolve ugly fat cells from yuor body
- 100% safe to take (no drugs and chemicals)
- used by millions of people worldwide...

Why waiiting?? 

http://check4choice.info











re mmoved from maiiling:
http://check4choice.info/r

l37



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#155752: bim with sweet ass grinding dick.

2005-07-21 Thread Shirley
Hello


She had her first anal sect with a huge black cock and it left her with a 
shocking gaping gash !

A girls first time getting anal will undoubtedly be rough.

Cherry loved getting that black pole inserted way deep up inside her and she 
moaned and groaned as her twat got hammered hot!


http://sobsister.net/view.cgi?s=nikm=IEECEH.iPdR,gfibjW,VSd

Don't think, just do.The real use of gunpowder is to make all men tall.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#133776: It doesn`t hurt to check Dannie

2005-02-21 Thread Claudia Shirley
Would you REFINANCE if you knew you'd save THOUSANDZ?
Or get a Loan of 405,000.00, you already qualified.

We'll get you the lowest possible rate.
Don't believe me? Fill out our small online questionaire and we'll show you how.

Get the home/house or car you always wanted, it only takes 35 seconds of your 
time.

Click this link:
http://www.lenderzchice.com/index2.php?refid=vik

Best Regards,
Claudia Shirley










sofa fnn menzies vb keynesian ak ambuscade qf inoperative qu alleyway krr 
billionth cnp hattie tn downstream ak precambrian msb disruptive hft claimant 
mb 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#92845: Urgent News

2005-02-09 Thread Shirley H. Jackson , III
Are you in need of M0NEY?
[EMAIL PROTECTED] : Has been Pre-Aproved for a  L-0-A-N  at 1.096% !

http://ez-rate.info/1/
Complete the easy form

Get your money - credit is N0T a FACT0R!

Jack is not missing singing near the station.


Bug#283738: Suggested patch

2005-02-07 Thread Stephen Shirley
Hi,
	Ok, i've put together a small patch that should write an error to the 
log file if either the ssl_certificate_file or rsa_private_key_file are 
not defined in the ircd.conf.

Steve
--- ircd-hybrid-7.0.3/src/listener.c2005-02-07 23:16:15.0 +
+++ client-ssl-error/src/listener.c 2005-02-08 00:43:36.0 +
@@ -37,6 +37,7 @@
 #include send.h
 #include memory.h
 #include setup.h
+#include s_log.h
 
 #ifdef HAVE_LIBCRYPTO
 #include openssl/bio.h
@@ -282,6 +283,14 @@
   if (port == 0)
 return;
 
+#ifdef HAVE_LIBCRYPTO
+  if (is_ssl  (ServerInfo.ssl_certificate_file == NULL || 
ServerInfo.rsa_private_key_file == NULL))
+  {
+  ilog(L_ERROR, Error opening ssl listen port -- no ssl certificate 
and/or rsa private key file.);
+  return;
+  }
+#endif
+
 #ifdef IPV6
   copy_s_addr(IN_ADDR(vaddr), in6addr_any);
 #else