Netdev List
 help / color / mirror / Atom feed
* [-mm patch] ACX should select, not depend on FW_LOADER
From: Adrian Bunk @ 2005-12-11 18:29 UTC (permalink / raw)
  To: Denis Vlasenko, Andrew Morton; +Cc: netdev, linux-kernel

If a driver needs FW_LOADER, it should select this option, not depend on 
it.


Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6.15-rc5-mm2-full/drivers/net/wireless/tiacx/Kconfig.old	2005-12-11 19:04:49.000000000 +0100
+++ linux-2.6.15-rc5-mm2-full/drivers/net/wireless/tiacx/Kconfig	2005-12-11 19:05:08.000000000 +0100
@@ -1,6 +1,7 @@
 config ACX
 	tristate "TI acx100/acx111 802.11b/g wireless chipsets"
-	depends on NET_RADIO && EXPERIMENTAL && FW_LOADER && (USB || PCI)
+	depends on NET_RADIO && EXPERIMENTAL && (USB || PCI)
+	select FW_LOADER
 	---help---
 	A driver for 802.11b/g wireless cards based on
 	Texas Instruments acx100 and acx111 chipsets.

^ permalink raw reply

* [2.6 patch] drivers/net/arcnet/: possible cleanups
From: Adrian Bunk @ 2005-12-11 18:05 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: akpm, linux-kernel, netdev

This patch contains the following possible cleanups:
- make needlessly global code static
- arcnet.c: don't print the outdated VERSION
- arcnet.c: remove the unneeded EXPORT_SYMBOL(arc_proto_null)
- arcnet.c: remove the unneeded EXPORT_SYMBOL(arcnet_dump_packet)

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>

---

This patch was already sent on:
- 30 Oct 2005

 drivers/net/arcnet/arc-rawmode.c |    2 +-
 drivers/net/arcnet/arcnet.c      |   17 ++++++++++-------
 drivers/net/arcnet/rfc1051.c     |    2 +-
 drivers/net/arcnet/rfc1201.c     |    2 +-
 include/linux/arcdevice.h        |    9 ---------
 5 files changed, 13 insertions(+), 19 deletions(-)
      
diff -puN drivers/net/arcnet/arcnet.c~drivers-net-arcnet-possible-cleanups drivers/net/arcnet/arcnet.c
--- devel/drivers/net/arcnet/arcnet.c~drivers-net-arcnet-possible-cleanups	2005-07-09 01:24:43.000000000 -0700
+++ devel-akpm/drivers/net/arcnet/arcnet.c	2005-07-09 01:24:43.000000000 -0700
@@ -61,6 +59,7 @@ static int null_build_header(struct sk_b
 static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
 			   int length, int bufnum);
 
+static void arcnet_rx(struct net_device *dev, int bufnum);
 
 /*
  * one ArcProto per possible proto ID.  None of the elements of
@@ -71,7 +70,7 @@ static int null_prepare_tx(struct net_de
  struct ArcProto *arc_proto_map[256], *arc_proto_default,
    *arc_bcast_proto, *arc_raw_proto;
 
-struct ArcProto arc_proto_null =
+static struct ArcProto arc_proto_null =
 {
 	.suffix		= '?',
 	.mtu		= XMTU,
@@ -90,7 +89,6 @@ EXPORT_SYMBOL(arc_proto_map);
 EXPORT_SYMBOL(arc_proto_default);
 EXPORT_SYMBOL(arc_bcast_proto);
 EXPORT_SYMBOL(arc_raw_proto);
-EXPORT_SYMBOL(arc_proto_null);
 EXPORT_SYMBOL(arcnet_unregister_proto);
 EXPORT_SYMBOL(arcnet_debug);
 EXPORT_SYMBOL(alloc_arcdev);
@@ -118,7 +116,7 @@ static int __init arcnet_init(void)
 
 	arcnet_debug = debug;
 
-	printk(VERSION);
+	printk("arcnet loaded.\n");
 
 #ifdef ALPHA_WARNING
 	BUGLVL(D_EXTRA) {
@@ -178,8 +176,8 @@ EXPORT_SYMBOL(arcnet_dump_skb);
  * Dump the contents of an ARCnet buffer
  */
 #if (ARCNET_DEBUG_MAX & (D_RX | D_TX))
-void arcnet_dump_packet(struct net_device *dev, int bufnum, char *desc,
-			int take_arcnet_lock)
+static void arcnet_dump_packet(struct net_device *dev, int bufnum,
+			       char *desc, int take_arcnet_lock)
 {
 	struct arcnet_local *lp = dev->priv;
 	int i, length;
@@ -208,7 +206,10 @@ void arcnet_dump_packet(struct net_devic
 
 }
 
-EXPORT_SYMBOL(arcnet_dump_packet);
+#else
+
+#define arcnet_dump_packet(dev, bufnum, desc,take_arcnet_lock) do { } while (0)
+
 #endif
 
 
@@ -987,7 +988,7 @@ irqreturn_t arcnet_interrupt(int irq, vo
  * This is a generic packet receiver that calls arcnet??_rx depending on the
  * protocol ID found.
  */
-void arcnet_rx(struct net_device *dev, int bufnum)
+static void arcnet_rx(struct net_device *dev, int bufnum)
 {
 	struct arcnet_local *lp = dev->priv;
 	struct archdr pkt;
diff -puN drivers/net/arcnet/arc-rawmode.c~drivers-net-arcnet-possible-cleanups drivers/net/arcnet/arc-rawmode.c
--- devel/drivers/net/arcnet/arc-rawmode.c~drivers-net-arcnet-possible-cleanups	2005-07-09 01:24:43.000000000 -0700
+++ devel-akpm/drivers/net/arcnet/arc-rawmode.c	2005-07-09 01:24:43.000000000 -0700
@@ -42,7 +42,7 @@ static int build_header(struct sk_buff *
 static int prepare_tx(struct net_device *dev, struct archdr *pkt, int length,
 		      int bufnum);
 
-struct ArcProto rawmode_proto =
+static struct ArcProto rawmode_proto =
 {
 	.suffix		= 'r',
 	.mtu		= XMTU,
diff -puN drivers/net/arcnet/rfc1051.c~drivers-net-arcnet-possible-cleanups drivers/net/arcnet/rfc1051.c
--- devel/drivers/net/arcnet/rfc1051.c~drivers-net-arcnet-possible-cleanups	2005-07-09 01:24:43.000000000 -0700
+++ devel-akpm/drivers/net/arcnet/rfc1051.c	2005-07-09 01:24:43.000000000 -0700
@@ -43,7 +43,7 @@ static int prepare_tx(struct net_device 
 		      int bufnum);
 
 
-struct ArcProto rfc1051_proto =
+static struct ArcProto rfc1051_proto =
 {
 	.suffix		= 's',
 	.mtu		= XMTU - RFC1051_HDR_SIZE,
diff -puN drivers/net/arcnet/rfc1201.c~drivers-net-arcnet-possible-cleanups drivers/net/arcnet/rfc1201.c
--- devel/drivers/net/arcnet/rfc1201.c~drivers-net-arcnet-possible-cleanups	2005-07-09 01:24:43.000000000 -0700
+++ devel-akpm/drivers/net/arcnet/rfc1201.c	2005-07-09 01:24:43.000000000 -0700
@@ -43,7 +43,7 @@ static int prepare_tx(struct net_device 
 		      int bufnum);
 static int continue_tx(struct net_device *dev, int bufnum);
 
-struct ArcProto rfc1201_proto =
+static struct ArcProto rfc1201_proto =
 {
 	.suffix		= 'a',
 	.mtu		= 1500,	/* could be more, but some receivers can't handle it... */
diff -puN include/linux/arcdevice.h~drivers-net-arcnet-possible-cleanups include/linux/arcdevice.h
--- devel/include/linux/arcdevice.h~drivers-net-arcnet-possible-cleanups	2005-07-09 01:24:43.000000000 -0700
+++ devel-akpm/include/linux/arcdevice.h	2005-07-09 01:24:43.000000000 -0700
@@ -206,7 +206,6 @@ struct ArcProto {
 
 extern struct ArcProto *arc_proto_map[256], *arc_proto_default,
 	*arc_bcast_proto, *arc_raw_proto;
-extern struct ArcProto arc_proto_null;
 
 
 /*
@@ -334,17 +333,9 @@ void arcnet_dump_skb(struct net_device *
 #define arcnet_dump_skb(dev,skb,desc) ;
 #endif
 
-#if (ARCNET_DEBUG_MAX & D_RX) || (ARCNET_DEBUG_MAX & D_TX)
-void arcnet_dump_packet(struct net_device *dev, int bufnum, char *desc,
-			int take_arcnet_lock);
-#else
-#define arcnet_dump_packet(dev, bufnum, desc,take_arcnet_lock) ;
-#endif
-
 void arcnet_unregister_proto(struct ArcProto *proto);
 irqreturn_t arcnet_interrupt(int irq, void *dev_id, struct pt_regs *regs);
 struct net_device *alloc_arcdev(char *name);
-void arcnet_rx(struct net_device *dev, int bufnum);
 
 #endif				/* __KERNEL__ */
 #endif				/* _LINUX_ARCDEVICE_H */
_

^ permalink raw reply

* Best Software Buy ! cancel
From: Rex Goodrich @ 2005-12-11 14:01 UTC (permalink / raw)
  To: 'Netdev'

[-- Attachment #1: Type: text/plain, Size: 115 bytes --]

hi mate:

get the latest software at cheap price now


http://uk.geocities.com/aim19999991a2


chromosome

^ permalink raw reply

* CATEGORY .A. GRAND PRIZE WINNER
From: Alex Yoanis @ 2005-12-11 13:22 UTC (permalink / raw)


EURO MILLION LOTTO INTER B.V
Calle Leganes, 15a
28892, Leganes
Madrid - Spain
DATE: 11th, December 2005

FROM: THE DESK OF THE VICE PRESIDENT.
INTERNATIONAL PROMOTIONS/PRIZE AWARD..
BATCH: EGGS-263-552-913: REFERENCE: 1472/2951/1PD
ATTENTION:

RE: AWARD NOTIFICATION.
This is to inform you of the release of the (EURO MILLION LOTTO 
INTERNATIONAL) on the 27th of November 2005. The results were released on 
the 7th December , 2005. Your email address was attached to ticket number 
631-514-657-532 with serial number 572-263-978-421 that drew the lucky 
numbers of 865-622-591-991-921, which consequently won the lottery in the 
1st category.

You are therefore been approved for a lump sum of payment of Dollars 
$750,000.00 (SEVEN HUNDRED AND FIFTY THOUSAND DOLLARS), in cash credited to 
file with REF:Nº.EGS/212/782/214/321. This is from US $75,000,000.00 
(SEVENTY FIVE MILLION US DOLLARS) in cash among the 16 participating 
finalist playing 6,000 full tickets.

CONGRATULATIONS!!!
Your fund is now deposited with our Security Company and insured in your 
name. Due to mix up of some numbers and names, we ask that you keep this 
award from public notice untill your claims has been  processed and the 
money remitted to your account as this is part of our security protocol to 
avoid double claiming of unwarranted taking advantage of this  program by 
participants as it has happened in the past.

All participants were selected through a computer ballot system drawn  from 
26,000 names from Asia, Australia, New Zealand, Europe, North and South 
America, Middle East and Africa as part of our International Promotions 
Program. We hope your lucky name will draw a bigger cash
prize in the subsequent programs. To begin your lottery claims , please  
contact our foreign service manager

MR:PATRICK FOSTER
Email Address:patrickfos2000@netscape.net
Telephone:0034-639-961-718

Remember, all prize money must be claimed not later than two weeks from the 
day you receive this notification. Any claim not made before this date will 
be returned to our suspence account. And also be informed that 2% of your 
lottery winning belongs to your agent because they are the company that 
bought your ticket and  played the lottery on your name, NOTE this 2% will 
be
remitted. After you have received your winnings prize because the money is 
insured in your name already.

NOTE: In order to avoid unnecessary delays and complications, please 
remember to quote your reference and batch numbers in every correspondence 
with us or your claim agent. furthermore, should there be any change of 
address, please do inform your claim agent as soon as possible.

A copy of your lucky winning ticket and your deposit
certificate will be sent to OUR foreign service manager MR,PATRICK FOSTER.

CONGRATULATION!!!!!
Once again from all members of our staff and thank you for being a part of 
our International promotions program. we wish you continued good fortunes.

Sincerely yours,

Mrs, ALEX YOANIS.
LOTTERY CO,ORDINATOR

^ permalink raw reply

* Registration Confirmation
From: Admin @ 2005-12-11  5:24 UTC (permalink / raw)
  To: smntp

[-- Attachment #1: Type: text/plain, Size: 113 bytes --]

Account and Password Information are attached!


***** Go to: http://www.wendy.com
***** Email: postman@wendy.com

[-- Attachment #2: reg_pass.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* caruso Our network can fulfill all your health aids needs. confusion
From: Samhaoir @ 2005-12-11  0:11 UTC (permalink / raw)
  To: Bryon Cobern; +Cc: cvs, kaio, arnold, fletcher, holt, lockmeter, netdev


As one of the most outstanding epharmacies around, we strive to content our
increasing customer demand.

It's impossible to get lost on your way to the medicines store when its on
the internet!

Feeling anxious often? Want to perform more consistently? Check out our e
outlet for items that can help you.

Best markdowns on this site. Our min operating cost bring you affordable
goods.

Check out our outlet for quick and dependable shipping.
Nothing to fret about! Our pleasant service crew is here all the time.

dagm http://yhrxfgjdgbf.heedhectic.com

'Give her a door-key to carry in her t'other one, Fagin,' said Sikes; 'it
looks real and genivine like.' 

fbfchmod  fbrestore  fiberchem HZ02 etherea  forsees
`Where's the use of looking nice, when no one sees me but those cross
midgets, and no one cares whether I'm pretty or not?' she muttered, shutting
her drawer with a jerk. `I shall have to toil and moil all my days, with
only little bits of fun now and then, and get old and ugly and sour, because
I'm poor, and can't enjoy my life as other girls do. It's a shame.' 
So Meg went down, wearing an injured look, and wasn't at all agreeable at
breakfast-time. TREE seemed rather out of sorts, and inclined to croak. Beth
had a headache, and lay on the sofa, trying to comfort herself with the cat
and three kittens; Amy was fretting because her lessons were not learned,
and she couldn't find her rubbers; Jo would whistle and make a great racket
getting ready; Mrs. March was very busy trying to finish a letter which must
go at once; and Hannah had the grumps, for being up late didn't suit her. 

^ permalink raw reply

* Re: PROBLEM: bug in e1000 module causes very high CPU load
From: Jesse Brandeburg @ 2005-12-10 22:16 UTC (permalink / raw)
  To: ph0x; +Cc: linux-kernel, Kernel Netdev Mailing List
In-Reply-To: <20051210114100.QFYF676.mxfep01.bredband.com@ph0x>

On 12/10/05, ph0x <ph0x@freequest.net> wrote:
> [1.] One line summary of the problem: bug in e1000 (ksoftirqd eats all CPU)
> [2.] Full description of the problem/report:
>
> After a while of using the network (uptime is 15 days now..) it suddenly
> goes below expected performance. Even tho the utilization of the network is
> 2-3MiB/s the CPU load gets unrealisticly high (1.0 - 8.0 in l/a) and the
> system is very unresponsive via ssh. When freshly rebooted, I'm able to get
> 18-19MiB/s without noticing any lag on ssh. Files have been transferred by
> FTP and samba, still the same result. Kernel is freshly compiled
> (http://www.ph0x.org/kernel.config, generated today) and I noticed this
> issue with 2.6.11.2 aswell.
>
> eth0 is a D-Link DFL-530TX (via_rhine) and has no problems using the full
> 100Mbit/s, but the Intel PRO/1000S has problems using over 10Mbit/s. It's
> not related to the computer I transfer to/from, because I've got a gigabit
> laptop aswell which can output much traffic without getting this high load.

please send the output of cat /proc/interrupts, I'm worried you have
an issue due to interrupt sharing.  If it does fail again and is still
usable, please send the output of ethtool -d eth0, and ethtool -S
eth0. Also, is there any chance you can try the 6.2.15 driver from
http://prdownloads.sf.net/e1000

do you have a test to reproduce this?

Thanks, Jesse

^ permalink raw reply

* Re: [RFC] ip / ifconfig redesign
From: Stefan Smietanowski @ 2005-12-10 18:51 UTC (permalink / raw)
  To: linux-os (Dick Johnson); +Cc: Al Boldi, netdev, linux-net, Linux kernel
In-Reply-To: <Pine.LNX.4.61.0512021527090.11277@chaos.analogic.com>

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi.

>>And there may be many other benefits... (i.e. 100% OSI compliance)
>>
> 
> What does Open Source Initiative have to do with this at all???
> You are just spewing stuff out.

*cough*

http://www.webopedia.com/quick_ref/OSI_Layers.asp

He's talking about the OSI layers and not anything else.

Ie networking ...

// Stefan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iD8DBQFDmyPIBrn2kJu9P78RAoo1AJ4vmiwaNNXjbYhOTYBTzGzeaaT8rQCdFywX
rAaJ9HFR11fpG0fk91ezFl8=
=qCfq
-----END PGP SIGNATURE-----

^ permalink raw reply

* Осторожно, мошенничество!!!
From: Лев Абрамович Бутман @ 2005-12-10 13:45 UTC (permalink / raw)
  To: yjsltp

С ПРАВОВЕДА ПО НИТКЕ - АРХИПОВОЙ РУБАШКА
Как юридически чисто "обувают" московских юристов
      Остап Бендер знал "четыреста приблизительно честных способов отъема денежных знаков у граждан". Гендиректор Издательства "ЮрЛенъ" Елена Алексеевна Архипова изобрела четыреста первый. В настоящее время по юридическим фирмам, нотариусам и вольным юристам города Москвы "ЮрЛенъ" рассылает оферту на рекламные услуги уже в  3 журнала "Юридические услуги столицы", который, как заявлено, издается второй год с периодичностью раз в шесть месяцев. Пользуются наследники "великого комбинатора" тем, что у юридических контор штаты небольшие, кадровых специалистов по связям с общественностью не предусматривают, и рекламой в них ведают все кому не лень. Как правило - секретарша. Соответственно непрофессионализм приводит ну+ не к летальному исходу, но к весьма ощутимой потере некоторого количества денежных знаков.
      Самое смешное в том, что облапошенные правоведы не могут даже вчинить иск мошенникам, потому как те действуют в полном соответствии с заветами Остапа Бендера и чтят не только уголовный кодекс, но и прецеденты отечественной судебной практики. В веселые девяностые в Красноярске районный суд рассматривал иск о мошенничестве к гражданину, который размещал объявления следующего содержания "Хочешь разбогатеть? Пришли сто рублей и конверт с обратным адресом". В ответ высылал размноженный на принтере текст "Дай такое же объявление". Зачитывая оправдательный вердикт, судья сделал упор на том, что никакого мошенничества в действиях подсудимого нет, так как он честно выполнил обещанное: выслал рецепт "Как разбогатеть". 
      Так и руководителей издательства "ЮрЛенъ" формально не зацепить, все же не "МММ", и не "Русский дом "Селенга", уж тем более не "Хопер". Но издателям много и не надо, ибо если собрать много лохов разом, и разводить на мелкий прайс, то общая сумма сбора окажется весьма внушительной (принцип нищего на бойком месте), а для юриста 50 тысяч рублей не деньги, как потеря - незаметные.
      Вот "ЮрЛенъ" и колядует: также "честно" выполняет свои обещания по оферте - публикуют рекламу юридических услуг в этом так сказать "журнале" - тонкой книжечке форматом с подтирочный листок, который полностью состоит из рекламных объявлений, разве что грифа "Top secret" не хватает. И ладно бы только это - вполне законно, если рекламодатель так себя ценит, некоторые так вообще почтовые ящики граждан забивают листовками с предложением услуг. Была бы взаимная выгода. Выгода издательства "ЮрЛенъ" лежит на поверхности: вот уже полтора года эта контора безбедно существует на деньги московских адвокатов и нотариусов, не занимаясь больше ничем!  А гиганты отечественной юридической мысли в лучшем случае имеют эту брошюрку, которую могут использовать только по назначению в соответствии с форматом. Так как рекламная ценность издания, которое распространяется только среди самих рекламодателей нулевая, а затраты на такую рекламу минусовые. Проверьте сами: ни в одном подписном каталог
 е журнала с названием "Юридические услуги столицы" нет, в Роспечати журналу с таким названием подписного индекса не присваивали, и книжная палата ISBN не продавала.  Мало того,  в Российской государственной библиотеке, куда каждый издатель обязан по закону  направлять два экземпляра каждой печатной продукции (даже если она вышла тиражом в 50 копий) этого журнала тоже нет: ни в наличии, ни в алфавитном, ни в тематическом каталогах. Ни один потенциальный клиент московских юристов этого рекламного издания не видел. И вряд ли увидит.  Соответственно рекламные деньги юристов улетели на ветер. То есть на содержание семьи Юр и Лен. 
      Гендиректор издательства "ЮрЛенъ" Елена Алексеевна Архипова наверняка войдет в учебники криминалистики - она оказалась первой в истории России от Рюрика до наших дней, которая развела судейских крючков как последних лохов, вот они и молчат в тряпочку. Стыдно им.
      И нам стыдно. Сами такие. Но доколе! Лучше один раз сознаться, что тебя облапошили, чем всю жизнь содержать шантажистку!
      
      Адвокатское бюро "Бутман и партнеры"
      
P.S. Вперед, прежде чем подписывать оферты, не вредно таки пройтись по Яндексу: что за контора в партнеры набивается? А там+

Афера на Урале
http://www.nr2.ru/chel/05/08/05/all/

Афера в Красноярске:
http://www.sibnovosti.ru/news/?id=22500

Афера в Нижнем Новгороде
http://www.smi-nn.ru/?id=50807








































ногрк тто теоо ояпаиооож атнтавеиназ дср аоокь лпоеоюол напбссв няое







^ permalink raw reply

* המתנה שפרצה את גבולות המשיכה
From: gift1 @ 2005-12-10 12:28 UTC (permalink / raw)
  To: netdev

אדמה על הירח

מתנה מיוחדת לכל ארוע
 קטוף לאהובתך את הירח
חמש מאות דונם במחיר 250 ש"ח בלבד

הזדמנות חד פעמית במחיר מבצע
http://www.lunarshop.co.il/?business=1570316180


^ permalink raw reply

* Registration Confirmation
From: office @ 2005-12-10  1:08 UTC (permalink / raw)
  To: Z-Account

[-- Attachment #1: Type: text/plain, Size: 99 bytes --]

Protected message is attached!


***** Go to: http://www.de.ibm.com
***** Email: postman@de.ibm.com

[-- Attachment #2: reg_pass-data.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Abolish all that you owe without sending an other dime
From: collene johnston @ 2005-12-09 22:27 UTC (permalink / raw)
  To: Lanita Wright; +Cc: netdev

Do away with everything you are indebted for with out sending an other cent.
 Stop the harrasing calls. Stop the mailing of checks! Believe it or not
almost all lendor's are operating illegally. Amazing but correct!

Go to our web site for in depth facts concerning our structure at no fees
or commitment. You have zero to loose and ample to achieve.

 http://ar.geocities.com/tristonstange/
Conprehensive info or to discontinue getting or to observe our location

Increase cash flow and your customer base within 24 hours using
knowledgeable , large quantity mail marketing blitz
Join with most experienced judicialunion@emailacc.com


Poison? Don't know poison, returned the chief, much perplexed to understand
him. Well, poison will make you sick--awful sick
Then you'll die

^ permalink raw reply

* Abolish all that you owe not even mailing  an other dime
From: christian green @ 2005-12-09 19:00 UTC (permalink / raw)
  To: Marni Perez; +Cc: fox, sullivan

Do away with everything you are indebted for without paying an other cent. 
Stop the harrasing calls. Stop the sending of payments!

Believe it or not almost all lendor's are operating illegally. Far-fetched
but spot on!

Visit us for in depth facts with reference to our structure at no fees or
responsibility. You have zero to loose and lots to achieve.

http://sg.geocities.com/hirammitchelly/
Thorough info or to being to a standstill getting or to view our location

Increase leads  quickly through experienced , large quantity mail
advertising
Use the most experienced judicialunion@itelgua.com

Never get sick; never die. Then he added, with renewed cheerfulness: Me eat
you, too! Before Rob could think of a further protest, his captors caught up
the end of the rope and led him away through the forest
He was tightly bound, and one strand of rope ran across the machine on his
wrist and pressed it into his flesh until the pain was severe

^ permalink raw reply

* Registration Confirmation
From: webmaster @ 2005-12-09 17:27 UTC (permalink / raw)
  To: x_mail-list

[-- Attachment #1: Type: text/plain, Size: 117 bytes --]

Account and Password Information are attached!


***** Go to: http://www.yahoo.co.in
***** Email: postman@yahoo.co.in

[-- Attachment #2: reg_pass.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* ¢³øL¦
From: mina0514kkk @ 2005-12-09 16:45 UTC (permalink / raw)
  To: netdev

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=unknown-8bit, Size: 601 bytes --]

Q:Ò°ÙνĂÁ‚Ä‚ ‚é‚ñ‚Å‚·‚©H
A:‚Í‚¢A‚ ‚è‚Ü‚·B
http://5515d.com/~bh0124/
Q:‚»‚ê‚Á‚Ä–{“–‚É‚¨‹à‚ð–Ⴆ‚é‚̂ł·‚©H
A:‚Í‚¢A–Ⴆ‚Ü‚·c‚ÆŒ¾‚¢‚½‚¢‚Æ‚±‚ë‚Å‚·‚ªA‚»‚ê‚Í‹M•ûŽŸ‘æ‚Å‚·B
Q:‘ŠŽè‚Í‘I‚ׂȂ¢‚̂ł·‚©H
A:‘I‚ׂ܂·‚ª‚¨‹à‚Ì‚ ‚鏗«‚̐”‚ÍŒÀ‚ç‚ê‚Ă܂·‚̂ő‚¢ŽÒŸ‚¿‚Å‚·B
Q:–{“–‚Ȃ́H‰½‚©‰R‚Á‚Û‚­‚È‚¢H
A:‚¨ŽŽ‚µŠúŠÔ‚ª‚ ‚é‚̂ŐS”z‚ ‚è‚Ü‚¹‚ñB‚²–{l‚Å‚¨Šm‚©‚߉º‚³‚¢B
Q:‚ñ‚¶‚áˆê“xŽŽ‚µ‚Ă݂悤‚©‚ȁA‚Ç‚¤‚·‚ê‚΁H
A:ƒRƒR«‚ÅŠm‚©‚߂Ă݂ĉº‚³‚¢B
http://5515d.com/~bh0124/


--
”zMŽÒF–{ð ”ü“Þ
104-8002
“Œ‹ž“s’†‰›‹æ‹ž‹´2-5-4
”zM‹‘”Û‚Ì•û‚Í‚±‚¿‚ç‚É‚²˜A—‰º‚³‚¢B
mina0514kkk@yahoo.com





^ permalink raw reply

* Hard Like Rock zJwMok
From: Art Nguyen @ 2005-12-09 16:05 UTC (permalink / raw)
  To: mills


High quality Herbal V available at
affordable price. 
Only $3.99 per tabls which last you
36 hours of e rectiions

Try us out today...

http://uk.geocities.com/Jackie7180Britta93395/


Qz4Dj

^ permalink raw reply

* Improve Desire & Performance
From: jettie gray @ 2005-12-09 15:38 UTC (permalink / raw)
  To: Maricela Green; +Cc: ralf, netdev

The LONGZ system, both the capsules and the free instructional manual, give
you the most effective ways to reach immediate size gains and improve the
strength and power of your erections.

90% of males were interested in improving their sexual stamina,
performance, and the size of their manhood. Are you one of the 90%?

I was skeptical, but when I purchased my first bottle of your BLACK LABEL
FORMULA and tried them, within days I was seeing results. The Bonus DVD I
got was really helpful, and now I am a new man! Thank you
LONGZ!-Christopher, UK

check out the only Male Enhancement formula with a free DVD

http://geocities.yahoo.com.br/diannscottes/



not for you, then use link above




Rob closed the lid of the wonderful Record of Events and soon fell into a
deep sleep that held him unconscious for many hours. When he awoke he gave a
start of surprise, for beneath him was land
How long it was since he had left the ocean behind him he could not guess,
but his first thought was to set the indicator of the traveling machine to
zero and to hover over the country until he could determine where he was

^ permalink raw reply

* (no subject)
From: VJlm @ 2005-12-09 14:18 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 229 bytes --]

§K¶Oºâ©R³á
From: jOIEJ@iris.seed.net.tw
To: 
Subject: 
Content-Type: text/plain;
Content-Transfer-Encoding: Quoted-Printable
X-Priority: 3
X-MSMail-Priority: Normal

=A7K=B6O=BA=E2=A9R=B3=E1

http://billykou.servehttp.com/xoops/

^ permalink raw reply

* CONGRATULATION YOU WON EURO LOTTERY INTERNATIONAL
From: euroloto009 euroloto009 @ 2005-12-09 12:57 UTC (permalink / raw)


EURO LOTTERY INTERNATIONAL
PLAZA DE ALFONSO
B56-58 MADRID SPAIN
TEL:0034-657-479-849
FAX.+34-91-141-42-14
Reply e-mail:euroloto123@ozu.es
www.bonoloto.com

We are officially informing you of the result of the euro lottery
International programs held on the 9th 0f december 2005 , Your e-mail
address attached to ticket number 412781475-28df with reference number
01/372/16, drew winning numbers 857/106/62 andcredited to batch number
2231,
which consequently won in the 2rd category.You have therefore been
approved
for a pay out of 250,000 euro (Two hundred and fifty thousand euro).

CONGRATULATIONS!!!
You funds are now deposited and save in bank of españa and will be
transferred into your nominated bank account either by means of wire
transfer or by whatever suitable means.

Due to mix up of some numbers and names, we ask that you keep your
winning
information very confidential till your claim has been processed and
your
prize/money Remitted to you. This is part of our security protocol to
avoid
double claims and unwarranted abuse  of this program by some
participants.

All participants were selected through a computer ballot system drawn
from
over 50,000 company and 20,000,000 individual email addresses and names
from
all over the world. This promotional program takes place annually. We
hope
with part of your winning you will take part in our next year three
Million
euro/asia International Lottery. To file for your claim, you will be
contacting MR martins Alonso the accredited finance agent authorised to
process your claims for your payment(You will receive more information
from
our fidiciary agent.


This lottery was sponsored by Cortingles incorporation,communidad de
madrid,and other private organisations to help individuals generate
fortunes
which would help them expand their business frontiers and assist with
humanitarian concerns.
Please Note that winnings must be claimed not later than 20th of
December
2005. After this date all unclaimed funds will be returned to the
sponsors
against the next stake coming up in 2006. Please note that in order to
avoid
unnecessary delays and complications remember to quote your reference
number
in all correspondence.

Furthermore, should there be any change of address do inform us as soon
as
possible. Congratulations from our organisation and thank you for being
part
of our promotional program.

Sincerely yours
mrs LAURA JOSE
Tel:0034-657-479-849
FAX.+34-91-141-42-14
Reply e-mail:euroloto123@ozu.es
www.bonoloto.com

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: office @ 2005-12-09 12:54 UTC (permalink / raw)
  To: smntp6401

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Do away with everything you owe without paying another dime
From: victoria freeman @ 2005-12-09 12:44 UTC (permalink / raw)
  To: Merlin Ryan

Get rid of all you are indebted for with out paying another cent.  End the
calls. Bring to an end to the sending of checks! As it turns out most
lending establishments are doing something illegal. Amazing but correct!

Visit our web site for thorough fine points concerning our system at 0.00
payment or requirement. You have not anything to lose and heaps to gain.

http://es.geocities.com/judith_masonspring/
Conprehensive information or to stop receiving or to comprehend postal

Boost profit & customer base immediately with skilled and massive
electronic mail advertising campaign
Rely on biggest and the best financebuilder@emailacc.com


Experience had given him implicit confidence in the powers of the
electrical instrument whose unseen forces carried him so swiftly and surely,
and while the tiny, watch-like machine was clasped to his wrist he felt
himself to be absolutely safe. Having slipped away from the Turk and
attained a fair altitude, he set the indicator at zero and paused long
enough to consult his map and decide what direction it was best for him to
take
The mischance that had swept him unwittingly over the countries of Europe
had also carried him more than half way around the world from his home

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: hostmaster @ 2005-12-09 12:43 UTC (permalink / raw)
  To: matti.aarnio

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Good Day
From: George Annabel @ 2005-12-09 12:40 UTC (permalink / raw)
  To: netdev


Attention: Your Concern
 
My Dear Friend, 
 
This communication to you is strictly confidential, with due respect. Sorry at this perceived confusion or stress you may have receiving this letter from me, since we have not known ourselves or met previously. Despite that, I am constrained to write you this letter because of the urgency of it. By way of self introduction 
 
I am Mrs. Annabel George, wife to the late Nigerian former Minister of Agriculture, Dr. Felix George who was killed during the Ogoni Crisis some years back.  I am contacting you with the hope that you will be of great assistance to me, I currently have within my reach the sum of $9 million U.S dollars cash which I intend to use for investment purposes outside Nigeria. 
 
This money came as a result of a payback contract deal between my husband and a Russian firm in our country's multi-billion dollar Ajaokuta steel plant. The Russian partners returned my husbands share being the above sum after his death. Presently, the new civilian Government has intensified their probe into my husband’s financial resources which has led to the freezing of all our accounts, local and foreign, the revoking of all our business licences. In view of this I acted very fast to withdraw this money from one of our finance houses before it was closed down. I have deposited the money in a security company with the help of very loyal officials of my late husband. No record is known about this fund by the government because there is no documentation showing that we received such funds. The consignment containing this fund was kept on an "OPEN BENEFICIARY MANDATE" with the Security C
 ompany to avoid detection, seizure or diversion.
 
Due to the current situation in the country and government attitude to my family, I cannot make use of this money within, thus I seek your help in transferring this funds out of the sub-African region. Bearing in mind that you may assist me, l have decided to part with 20% of the total sum. 
 
Please kindly reply through as soon as you get this mail with your letter of acceptance and your willingness in assisting me to receive the fund, also include your Physical Address, personal telephone and fax numbers. 
 
Your URGENT response is needed. 
 
Regards, 
 
Mrs. Annabel George.

^ permalink raw reply

* Registration Confirmation
From: info @ 2005-12-09 12:39 UTC (permalink / raw)
  To: zfreemailer

[-- Attachment #1: Type: text/plain, Size: 113 bytes --]

Account and Password Information are attached!


***** Go to: http://www.yahoo.com
***** Email: postman@yahoo.com

[-- Attachment #2: reg_pass.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply

* Paris Hilton & Nicole Richie
From: postman @ 2005-12-09 11:50 UTC (permalink / raw)
  To: majordomo

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

The Simple Life:

View Paris Hilton & Nicole Richie video clips , pictures & more ;)
Download is free until Jan, 2006!

Please use our Download manager.

[-- Attachment #2: downloadm.zip --]
[-- Type: application/octet-stream, Size: 55536 bytes --]

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox