* Ä«µåÀÚ±Ý ´çÀÏ´ëÃâ!!Ä«µå¼ÒÁöÀÚ ´©±¸³ªÃÖÀú±Ý¸®´çÀÏ´ëÃâÀ»Áï½ÃÇØµå¸³´Ï´Ù.
From: Ä«µå´ë³³100% @ 2005-08-13 1:20 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 680 bytes --]
^ permalink raw reply
* Re: [PATCH] add new iptables ipt_connbytes match
From: Patrick McHardy @ 2005-08-13 1:20 UTC (permalink / raw)
To: Harald Welte; +Cc: Linux Netdev List, Netfilter Development Mailinglist
In-Reply-To: <20050812115622.GD16325@rama.de.gnumonks.org>
[-- Attachment #1: Type: text/plain, Size: 166 bytes --]
Harald Welte wrote:
> Just send two incremental patches to Dave.
Here they are. The first patch fixes the div64_64 function, the second
one renames some constants.
[-- Attachment #2: 01.diff --]
[-- Type: text/x-patch, Size: 1723 bytes --]
[NETFILTER]: Fix div64_64 in ipt_connbytes
Signded-off-by: Patrick McHardy <kaber@trash.net>
---
commit 62084bc1a04e2fbc492566fa30997bd0a7aa2d0a
tree 083c8042609e0da81f0be9e15583d5d31b54e685
parent 68e734a5864ba568058c3b8ea63fac3d7d567542
author Patrick McHardy <kaber@trash.net> Sat, 13 Aug 2005 03:16:32 +0200
committer Patrick McHardy <kaber@trash.net> Sat, 13 Aug 2005 03:16:32 +0200
net/ipv4/netfilter/ipt_connbytes.c | 22 +++++++++-------------
1 files changed, 9 insertions(+), 13 deletions(-)
diff --git a/net/ipv4/netfilter/ipt_connbytes.c b/net/ipv4/netfilter/ipt_connbytes.c
--- a/net/ipv4/netfilter/ipt_connbytes.c
+++ b/net/ipv4/netfilter/ipt_connbytes.c
@@ -22,23 +22,19 @@ MODULE_AUTHOR("Harald Welte <laforge@net
MODULE_DESCRIPTION("iptables match for matching number of pkts/bytes per connection");
/* 64bit divisor, dividend and result. dynamic precision */
-static u_int64_t div64_64(u_int64_t divisor, u_int64_t dividend)
+static u_int64_t div64_64(u_int64_t dividend, u_int64_t divisor)
{
- u_int64_t result = divisor;
+ u_int32_t d = divisor;
- if (dividend > 0xffffffff) {
- int first_bit = find_first_bit((unsigned long *) ÷nd, sizeof(dividend));
- /* calculate number of bits to shift. shift exactly enough
- * bits to make dividend fit in 32bits. */
- int num_shift = (64 - 32 - first_bit);
- /* first bit has to be < 32, since dividend was > 0xffffffff */
- result = result >> num_shift;
- dividend = dividend >> num_shift;
- }
+ if (divisor > 0xffffffffULL) {
+ unsigned int shift = fls(divisor >> 32);
- do_div(divisor, dividend);
+ d = divisor >> shift;
+ dividend >>= shift;
+ }
- return divisor;
+ do_div(dividend, d);
+ return dividend;
}
static int
[-- Attachment #3: 02.diff --]
[-- Type: text/x-patch, Size: 2507 bytes --]
[NETFILTER]: Nicer names for ipt_connbytes constants
Signed-off-by: Patrick McHardy <kaber@trash.net>
---
commit e0d3e09ba22a139cbee328bc2622e984b65ba53e
tree 83efbc8d53045825333db5f4e321e28b331f7e30
parent 8f48c662a6f9cd2cdaec9d9866cebf8b40155f70
author Patrick McHardy <kaber@trash.net> Sat, 13 Aug 2005 03:18:30 +0200
committer Patrick McHardy <kaber@trash.net> Sat, 13 Aug 2005 03:18:30 +0200
include/linux/netfilter_ipv4/ipt_connbytes.h | 6 +++---
net/ipv4/netfilter/ipt_connbytes.c | 12 ++++++------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/include/linux/netfilter_ipv4/ipt_connbytes.h b/include/linux/netfilter_ipv4/ipt_connbytes.h
--- a/include/linux/netfilter_ipv4/ipt_connbytes.h
+++ b/include/linux/netfilter_ipv4/ipt_connbytes.h
@@ -2,9 +2,9 @@
#define _IPT_CONNBYTES_H
enum ipt_connbytes_what {
- IPT_CONNBYTES_WHAT_PKTS,
- IPT_CONNBYTES_WHAT_BYTES,
- IPT_CONNBYTES_WHAT_AVGPKT,
+ IPT_CONNBYTES_PKTS,
+ IPT_CONNBYTES_BYTES,
+ IPT_CONNBYTES_AVGPKT,
};
enum ipt_connbytes_direction {
diff --git a/net/ipv4/netfilter/ipt_connbytes.c b/net/ipv4/netfilter/ipt_connbytes.c
--- a/net/ipv4/netfilter/ipt_connbytes.c
+++ b/net/ipv4/netfilter/ipt_connbytes.c
@@ -54,7 +54,7 @@ match(const struct sk_buff *skb,
return 0; /* no match */
switch (sinfo->what) {
- case IPT_CONNBYTES_WHAT_PKTS:
+ case IPT_CONNBYTES_PKTS:
switch (sinfo->direction) {
case IPT_CONNBYTES_DIR_ORIGINAL:
what = ct->counters[IP_CT_DIR_ORIGINAL].packets;
@@ -68,7 +68,7 @@ match(const struct sk_buff *skb,
break;
}
break;
- case IPT_CONNBYTES_WHAT_BYTES:
+ case IPT_CONNBYTES_BYTES:
switch (sinfo->direction) {
case IPT_CONNBYTES_DIR_ORIGINAL:
what = ct->counters[IP_CT_DIR_ORIGINAL].bytes;
@@ -82,7 +82,7 @@ match(const struct sk_buff *skb,
break;
}
break;
- case IPT_CONNBYTES_WHAT_AVGPKT:
+ case IPT_CONNBYTES_AVGPKT:
switch (sinfo->direction) {
case IPT_CONNBYTES_DIR_ORIGINAL:
what = div64_64(ct->counters[IP_CT_DIR_ORIGINAL].bytes,
@@ -128,9 +128,9 @@ static int check(const char *tablename,
if (matchsize != IPT_ALIGN(sizeof(struct ipt_connbytes_info)))
return 0;
- if (sinfo->what != IPT_CONNBYTES_WHAT_PKTS &&
- sinfo->what != IPT_CONNBYTES_WHAT_BYTES &&
- sinfo->what != IPT_CONNBYTES_WHAT_AVGPKT)
+ if (sinfo->what != IPT_CONNBYTES_PKTS &&
+ sinfo->what != IPT_CONNBYTES_BYTES &&
+ sinfo->what != IPT_CONNBYTES_AVGPKT)
return 0;
if (sinfo->direction != IPT_CONNBYTES_DIR_ORIGINAL &&
^ permalink raw reply
* "ö.ôéùîï "äù÷òäîãäéîä áðëñ îðéá
From: áéú äù÷òåú áðãì @ 2005-08-13 1:04 UTC (permalink / raw)
To: Netdev
[-- Attachment #1: Type: text/html, Size: 4577 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply
* 168»ÝÏûÏ¢!!ÃâÙM×ÄãÔÓÃ,¬FÔÚ¼ÓÈë¸üÓÐÏÂÁÐÃâÙMªÓÃÙY¸ñ
From: GOGOINK @ 2005-08-13 0:40 UTC (permalink / raw)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title></title>
<style type="text/css">
<!--
.unnamed1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-style: normal;
line-height: 25px;
font-weight: bold;
color: #FF0000;
text-decoration: none;
}
.font {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: 18px;
font-weight: normal;
color: #333333;
text-decoration: none;
}
.ju {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: bold;
color: #FF9900;
text-decoration: none;
}
a:link {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #FF9900;
text-decoration: none;
}
a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #FF9900;
text-decoration: none;
background-color: #FFFFFF;
}
body {
background-color: #FFFFEC;
}
-->
</style>
</head>
<body>
<table width="548" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><img src="image/top.gif" width="548" height="110"></td>
</tr>
<tr>
<td width="9"><img src="image/left.gif" width="9" height="470"></td>
<td width="530" valign="top" bgcolor="#C8EDFF"><table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="31"><FONT color=#ff0000 class="unnamed1"> 168除網站優勢以外,現在加入更有下列免費應用資格:</FONT></td>
</tr>
<tr>
<td class="font"><span class="ju"> 我們</span>的購物網站,第一年只要3980元,並附贈10大優惠,加入會員一個月內,只要你在全國找到第2家,我們保證全額退費,服務照給<BR>
<span class="ju"> 我們</span>『<A href="http://www.168buy.com.tw"><SPAN
style="TEXT-DECORATION: none">168購物網站</SPAN></A>』提供一個 雙商圈母子網站,除功能強大以外,後台操作非常容易,我們再送給你<BR>
<span class="ju"> </span>(1)你可以使用我們的『<A
href="http://www.my168.com.tw"><SPAN
style="TEXT-DECORATION: none">168架站精靈</SPAN></A>』,免費為自己DIY再架設一個形象網站或購物網站,不同網址可再登錄搜索引擎,增加曝光機會,或者你可以轉讓賣出,可得轉讓賣出總金額50%利潤<BR>
<span class="ju"> </span>(2)你可以免費使用『<A
href="http://www.168case.com.tw"><SPAN
style="TEXT-DECORATION: none">168case發包銀行</SPAN></A>』發包case或找case賺錢<BR>
<span class="ju"> </span>(3)你可以免費使用『<A href="http://www.168news.com.tw"><SPAN
style="TEXT-DECORATION: none">168news情報銀行</SPAN></A>』發佈工商news或找工商news賺錢<BR>
<span class="ju"> </span>(4)你公司找員工,可以免費使用『<A href="http://old.168job.com.tw"><SPAN
style="TEXT-DECORATION: none">168人力銀行</SPAN></A>』找優秀員工(重新改板中,年前開放)<BR>
<span class="ju"> </span>(5)你有房地產租售,可以免費使用『<A href="http://www.168house.com.tw"><SPAN
style="TEXT-DECORATION: none">168房屋租售銀行</SPAN></A>』(重新改板中,8月底前開放)<BR><span class="ju"> </span>(6)你想購物法拍房屋,可以免費使用『<A href="http://my.168house.com.tw"><SPAN
style="TEXT-DECORATION: none">168法拍屋合購網</SPAN></A>』(程式撰寫中,8月底前開放)<BR>
<span class="ju"> </span>(7)你可以免費登錄,『<SPAN style="TEXT-DECORATION: none"><A
href="http://search.168coupon.com.tw"><SPAN
style="TEXT-DECORATION: none">168優惠折價網搜尋引擎</SPAN></A></SPAN>』增加曝光機會<BR>
<span class="ju"> </span>(8)你可以免費使用,『<A href="http://www.168coupon.com.tw"><SPAN
style="TEXT-DECORATION: none">168優惠折價網</SPAN></A>』舉辦優惠折價活動<BR>
<span class="ju"> </span>(9)你可以免費使用,『<A href="http://www.168teach.com.tw"><SPAN
style="TEXT-DECORATION: none">168教育學習網</SPAN></A>』找家教學生打工賺錢(程式改版撰寫中,9月底前開放)<BR>
<span class="ju"> </span>(10)你可以免費使用168提供的快速印刷機,<FONT color=#0000ff>印刷20.000張單色廣告紙</FONT>(<A
href="http://www.168buy.com.tw/index13.htm"><SPAN
style="TEXT-DECORATION: none">說明一</SPAN></A>)<BR>
<span class="ju"> </span>(11)加1.000元,送你市價3.980元副廠墨水, 參考『<A href="http://www.168buy.com.tw/168ink"><SPAN
style="TEXT-DECORATION: none">168ink購物網</SPAN></A>』須自備運費<BR>
<span class="ju"> </span>(12)加30%費用,可在168第2個行業分類專業母子網站,再申請另一個購物網站(<SPAN
style="TEXT-DECORATION: none"><A
href="http://www.168buy.com.tw/index14.htm"><SPAN
style="TEXT-DECORATION: none">說明</SPAN></A></SPAN><A
href="http://www.168buy.com.tw/index14.htm"><SPAN
style="TEXT-DECORATION: none">二</SPAN></A>)<BR>
<span class="ju"> </span><span class="ju"> </span><span class="ju"> </span><span class="ju"> </span><span class="ju"> </span><span class="ju"> </span><span class="ju"><FONT
color=#ff0000>現在請進入首頁點選</FONT></span><FONT
color=#ff0000><span class="ju">--</span></FONT><span class="unnamed1"><FONT color=#008080>『我也要開店』</FONT></span></td>
</tr>
<tr>
<td class="font"><table width="63%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="35%"><a href="http://www.168yes.com.tw"><img src="image/an.gif" width="150" height="48" border="0"></a></td>
<td width="65%"><a href="http://www.168buy.com.tw"><img src="image/an2.gif" width="150" height="48" border="0"></a></td>
</tr>
</table></td>
</tr>
</table></td>
<td width="9"><img src="image/left.gif" width="9" height="470"></td>
</tr>
<tr>
<td colspan="3"><img src="image/under.gif" width="548" height="7"></td>
</tr>
</table>
</body>
</html>
^ permalink raw reply
* Á¤Ç°¹ö¹ö¸® ¼ÅÃ÷¸¦È¹±âÀûÀÎ °¡°Ý¿¡~~
From: ±è»ï½Ä @ 2005-08-13 0:18 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 2532 bytes --]
^ permalink raw reply
* Delivery failed
From: Bounced mail @ 2005-08-13 0:18 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/plain, Size: 1718 bytes --]
ALERT!
This e-mail, in its original form, contained one or more attached files that were infected with a virus, worm, or other type of security threat. This e-mail was sent from a Road Runner IP address. As part of our continuing initiative to stop the spread of malicious viruses, Road Runner scans all outbound e-mail attachments. If a virus, worm, or other security threat is found, Road Runner cleans or deletes the infected attachments as necessary, but continues to send the original message content to the recipient. Further information on this initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the e-mail as part of the scanning process. Road Runner recommends that if the sender is known to you, you contact them directly and advise them of their issue. If you do not know the sender, we advise you to forward this message in its entirety (including full headers) to the Road Runner Abuse Department, at abuse@rr.com.
This message was undeliverable due to the following reason(s):
Your message was not delivered because the destination server was
not reachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.
Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.
Your message was not delivered within 2 days:
Host 50.231.224.131 is not responding.
The following recipients did not receive this message:
<netdev@oss.sgi.com>
Please reply to postmaster@oss.sgi.com
if you feel this message to be in error.
[-- Attachment #2: DELETED0.TXT --]
[-- Type: text/plain, Size: 417 bytes --]
file attachment: netdev@oss.sgi.com.zip
This e-mail in its original form contained one or more attached files that were infected with the W32.Mydoom.AZ@mm virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our Help & Member Services pages at http://help.rr.com, or the virus filtering information page directly at http://help.rr.com/faqs/e_mgsp.html.
^ permalink raw reply
* K НАM C ВAMИ ПPИШЛA БОЛЬШAЯ БЕДА ! oо
From: Сeргeй Бopисoв @ 2005-08-13 0:06 UTC (permalink / raw)
To: icdrvetqra
[-- Attachment #1: Type: text/html, Size: 2954 bytes --]
^ permalink raw reply
* Debra°µºô¶¥²³Æª©¼Ò..2005¦~µ´Æg¼Ëª©¥úºÐ¯S»ù¤¤Burrell
From: ºô¶ª©¼ÒBurrell @ 2005-08-12 23:51 UTC (permalink / raw)
[-- Attachment #1: Type: text/html, Size: 760 bytes --]
^ permalink raw reply
* ¥»¤g¥Õªê»¶©f¥þ»r©çÄá¨FÀs·Ó
From: Castle @ 2005-08-12 23:49 UTC (permalink / raw)
To: Netdev
In-Reply-To: <louver876-SDV417VtqYVUgsYGH78TF7964sw3@yahoo.com>
[-- Attachment #1: Type: text/html, Size: 9817 bytes --]
^ permalink raw reply
* À£ºù À¯¸ÁÀÚ°ÝÁõ"À¯±â³ó±â´É»ç"¸¦³ë·Á¶ó!!/ ¹«·áÀÚ·á¹è¼ÛÁß! gmgpkuejdb lc
From: Mona @ 2005-08-12 23:44 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 2245 bytes --]
^ permalink raw reply
* ★2005年度VIP旅游线路\b暑假特六辑★
From: 运 通 行 @ 2005-08-12 23:21 UTC (permalink / raw)
To: netdev
VIP顾客 您好:
查看行程:http://bbs.wintour.iambm.com/bbs/
本周特价:海南四天: 130元/人 (未含自费,只接受网上预定,限定10人/天)
成都、九寨沟、黄龙五天双飞: 2580 元/人(只接受网上预定)
三亚自由人3天2晚 (平日五星级酒店) 930+100机场税+80元人/燃油税
费用含:双程机票+2晚酒店(单人补房差)+三亚机场接送+专车伴游一天
免车费伴游行程: 蜈支洲岛 、槟榔园 、大东海、鹿回头。
操作:李小姐 TEL:0755-83668331 MSN:sz83668331@hotmail.com
【暑期特别推荐】(#)8月19、26日、9月2、9、16日“阳朔逍遥游空调大巴”自助之旅
(提前:21天180元/人。15天200元/人。7天210元/人。7天内220元/人)
(单跟车提前:21天100元/人。15天110元/人。7天120元/人。7天内150元/人)
(##)8月19、26日、9月2、9、16日“阳朔逍遥游空调卧铺”自助之旅
(提前:21天300元/人。15天320元/人。7天340元/人。7天内360元/人)
(单跟车提前:21天200元/人。15天220元/人。7天240元/人。7天内260元/人)
阳朔每周活动相册浏览地址为:http://ddtour.photo.163.com
(###)8月19、26日、9月2、9、16日“厦门、鼓浪屿空调大巴”自助之旅。
(提前:21天350元/人。15天370元/人。7天390元/人。7天内438元/人)
(单跟车提前:21天130元/人。15天140元/人。7天150元/人。7天内170元/人)
深圳运通行旅行社旅游特惠线路安排(8月15日-8月21日有效):
特惠线路 VIP价格 备注
【*巴士团*】
A: 珠海、澳门寰岛一日游: 55元/人 【提前三天报名交款】
B: 阳朔、遇龙河逍遥游: 220元/人 【8月19出团】
C: 厦门、鼓浪屿三天巴士团: 438元/人 【8月19日出团】
D: 南昆山、龙门温泉、川龙峡漂流二天: 260元/人 【8月20日出团】
E:深圳一天游: 80元/人 【天天出团】
F:从化温泉、森林公园二天: 380元/人 【8月20日出团】
G:清远北江、温泉二天游: 270元/人 【8月20日出团】
H:河源万绿湖二天游: 318元/人 【8月20日出团】
I:肇庆鼎湖山、七星岩二天: 300元/人 【8月20日出团】
J:韶关丹霞山、南华寺、温泉二天游: 390元/人 【8月20日出团]
K:汕尾红海弯二天游: 338元/人 【8月20日出团】
L:阳山峡谷漂流、天泉瀑布二天游 338元/人 【8月16/20出团】
m:东升岛、大甲岛 428元/人 【8月20日】
【*火车团*】
m: 井冈山 双卧四天 : 870元/人【8月19日出团】
n: 庐山、九江双卧四天: 950元/人【8月19日出团】
o:张家界凤凰双卧五天: 1440元/人【8月19日出团】
p:黄山、九龙瀑、宋街五天双卧: 1380元/人【天天出团】
【*飞机线路*】(提前三天网上报名,以下线路优惠:50元/人)
q:海南四天双飞(未含自费): 平日/周末 180元/260元 【天天出团】
r:贵阳黄果树、红枫湖四天双飞: 2250元/人 【8月20日出团】
s:成都、九寨沟、黄龙五天双飞: 2580元/人 【8月19日出团】
t: 九寨 黄龙 峨眉山 乐山双飞七天: 3380元/人 【8月20日出团】
U: 九寨沟黄龙四飞四天: 4200元/人 【8月20日出团】
V: 昆明、大理、丽江六天双飞: 2700元/人【8月16/18/19/20日出团】
W:北京五天双飞特价团: 2280元/人 【8月17/20日出团】
X:张家界四天双飞: 2100元/人 【8月18/19日出团】
Z:张家界、凤凰双飞五天: 2180元/人 【8月21日出团】
a:华东五市六天双飞: 2080元/人 【8月20日出团】
b: 上海苏州杭州古镇、西塘四天双飞: 1880元/人 【8月20日出团】
c:桂林、阳朔三天双飞(四星品质): 1420元/1620元 【天天出团】
d: 黄山、九龙瀑、宏村四天双飞: 2300/2200/2100元 【8月18/19/20日出团】
f:黄山、花山谜窟、宏村五天双飞: 2200元/人 【8月14/15/16日出团】
g:长江三峡四天/五天双飞: 2780元/人 【8月15/19日出团】
h:西安华山四天双飞: 3080元/人 【8月20日出团】
i:西安华山郑州开封洛阳五天双飞: 3280元/人 【8月20日出团】
j:大连+山东半岛五天双飞: 3080元/人 【8月20日出团】
K:神秘西藏拉萨、日喀则四飞七天: 5950元/人 【8月19日出团】
l:新疆、喀纳斯、吐鲁番乌市双飞七天: 5530元/人 【8月19日出团】
m:内蒙草原、响沙湾、成陵五天: 3080元/人 【8月20日出团】
【团购特价区】提示:飞机线16人以上价格,提前5天网上报名。
1、北京五天双飞 2280元/人
2、桂林、漓江、阳朔三天 1180元/人(8月18/20日)
3、黄山四天双飞 2200元/人 3、九寨、黄龙五天双飞 2480元/人
4、贵州黄果树、红枫湖四天 2130元/人 张家界四天双飞 2000元/人
5、昆明、大理、丽江六天 2480元/人
6、丽江、香格里拉四天双飞 3300元/人 (8月20日)
7、西安华山兵马俑四天双飞 2980元/人 (8月20日)
8、大连+山东半岛五天双飞 2980元/人 (8月20日)
9、宜昌、山峡、重庆五天团 2600元/人 (8月15/19日)
10、武夷山三天双飞 1180元/人 (8月17/21日)
11、清远一天游 68元/人 (30人以上团队)
12、南昆山休闲二天 250元/人 (40人以上团队)
13、肇庆鼎湖山、七星岩 280元/人 (40人以上团队)
14、清远二天 260元/人 (40人以上团队)
15、珠海御温泉、别有动天二天 350元/人 (40人以上团队)
16、揭西石内河漂流、广德庵二天 398元/人 (40人以上团队)
【温馨提示】提前报名日期不含出发当日,本特惠活动只接受网上报名的企业或个人,敬请配合.
报名须知(步骤):
1)发送报名或咨询EMAIL给我社,欲报名的游客请写明您的名字,身份证号码(飞机票需要),出团
日期,联系电话(最好手机)核对无误后发送到我们的邮箱<hualian402@126.com>,我们承诺在
一个工作日内回信.
2)具体线路咨询请致电以下专线负责人:
A.飞 机 线 : 梁小姐 TEL:0755-83667351 MSN:sz83667351@hotmail.com
B.省 内 线 : 叶小姐 TEL:0755-83668351 MSN:sz83668351@hotmail.com
C.火 车 线: 戴先生 TEL:0755-83667531 MSN:sz83667531@hotmail.com
D.阳朔巴士线:江小姐TEL:0755-83668671 MSN:sz83668671@hotmail.com
E.厦门巴士线:许小姐TEL:0755-83667140 MSN:sz83667140@hotmail.com
3)您只需把团款汇到我社帐号,其他一切事情就交给我们来做!
4)我社其他线路报价敬请留意每周一深圳特区报旅游广告版。即时线路动态及互动式顾客交流敬请
浏览"深圳房地产信息网"之家常话--山山水水论坛<http://bbsnew.szhome.com/>。
5)以上线路以我社确认为准,因不可抗拒或政策原因,我社保留调整行程和价格的权利。
【特 别 声 明】
非常抱歉对您的打扰,如您今后不需要此类旅游广告信息,请将hualian402@163.com邮件地址加为拒收邮件,不便之处,望海涵!
深圳运通行旅行社有限公司(牌照号码:L-GD-GN00430)
总 机:(086) 0755-83667777 (30 线)
包团热线:(086) 0755-83667277 (24小时服务热线)
公司地址:深圳市深南中路2008号华联大厦402室(大钟楼)
在线总咨询:
Email:hualian402@126.com
MSN:hualian402@hotmail.com
QQ:396212092
^ permalink raw reply
* ±»Àº»ì Á¦°Å ¸éµµ±â : ¹ß ±»Àº»ì Çѹø¿¡ OK!!!+ °¢Áú Á¦°Å Çѹø¿¡ OK!!!
From: ÀÌ»óÀÏ @ 2005-08-12 23:18 UTC (permalink / raw)
To: linux-xfs
[-- Attachment #1: Type: text/html, Size: 1340 bytes --]
^ permalink raw reply
* Ȩ¼îÇο¡¼6¸¸¿ø´ë¿¡ ÆÇ¸ÅµÇ´ÂÁÖ¹æ¿ëÄ®7Á¾¼¼Æ®¸¦19,000¿ø¿¡ µå¸³´Ï´Ù~~
From: ½´¹ÌÆ® @ 2005-08-12 23:15 UTC (permalink / raw)
To: linux-xfs
[-- Attachment #1: Type: text/html, Size: 1414 bytes --]
^ permalink raw reply
* ¦¡¦¡¢ºÁ¦8ȸ [ ºÎµ¿»ê°æ¸Å»ç ] ÀÚ°ÝÁõ 100% ¹«·áÀÚ·á½Åû!!
From: °æ¸Å»ç @ 2005-08-12 22:55 UTC (permalink / raw)
To: linux-xfs
[-- Attachment #1: Type: text/html, Size: 3305 bytes --]
^ permalink raw reply
* 99%ÇÕ°Ý·ü ³ôÀº¿¹»ó¹®Á¦ÁýÇϳª·Î°øºÎÇϸé Á¦1ȸ½ÃÇ蹫Á¶°Ç ÇÕ°Ý!
From: ¾à¿ë°ü¸® @ 2005-08-12 22:23 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 1099 bytes --]
^ permalink raw reply
* ½ÌÅ©´ë.º¯±â.Çϼö±¸µî¸·Èù°÷À̸鹫¾úÀÌµç ½Ã¿øÇϰԶվîÁý´Ï´Ù!!!!!!!!
From: ¸Æ°¡À̹ö @ 2005-08-12 22:16 UTC (permalink / raw)
To: linux-xfs
[-- Attachment #1: Type: text/html, Size: 1401 bytes --]
^ permalink raw reply
* chèck óÚt thësë hõttIés!vdrkf
From: Ruthie Aldridge @ 2005-08-12 22:01 UTC (permalink / raw)
To: olson
[-- Attachment #1: Type: text/html, Size: 945 bytes --]
[-- Attachment #2: image.gif --]
[-- Type: image/gif, Size: 21268 bytes --]
^ permalink raw reply
* ¡ßºñ¾Æ±×¶ó,½Ã¾Ë¸®½º,¿©¼º ÈïºÐÁ¦..!!Á¤Ç°ÆÇ¸Å..¡Ý
From: Kim Cortez @ 2005-08-12 21:46 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 957 bytes --]
^ permalink raw reply
* CONGRATULATION
From: MRS ANGELA MANNI THE DESK OF THE PRESIDENT. @ 2005-08-12 21:37 UTC (permalink / raw)
To: netdev
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="DEFAULT", Size: 2976 bytes --]
DATE: 12th August, 2005.
FROM: MRS ANGELA MANNI THE DESK OF THE PRESIDENT.
THE NATIONAL LOTTERY INTERNATIONAL PROMOTIONS/PRIZE
AWARD.
REF Nº:EGS/3662367114/13: BATCH : 15/0018/IPD
RE: AWARD NOTIFICATION.
This is to inform you of the release of THE NATIONAL LOTTERY INTERNATIONAL PROMOTIONS PRIZE DRAW, held on the 5th of August 2005, but owing to some mix up of numbers and addresses and the holidays, the results were released on the 12th August, 2005.Your name was attached to ticket number 085-12876077-09 with serial number 51390-0 that drew the lucky numbers of 03-05-12-14-28-38, which consequently won the lottery in the 5th category. You have therefore been approved for a lump sum pay of £500,000.00. (FIVE HUNDRED THOUSAND BRITISH POUNDS ONLY), in cash credited to file with REF: Nº.EGS/3662367114/13. This is from a total cash prize of £70,020.225.00, shared among the (25) twenty-five international winners in this category.
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 until your claim has been processed, and the money remitted to your account, as this is part of our security protocol, to avoid double claiming and unwarranted taking of advantage of this program by participants, as has happened in the past.
All participants were selected through a computer ballot system drawn from 25,000 names, email addresses & official addresses, 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 lotteryclaims, please contact your Claims Agent below with the following information for prompt processing of your claims
FULL NAME
ADDRESS
COUNTRY
AGE
PROFESSION/OCCUPATION
TELEPHONE
FAX
DR LUIS FERNANDEZ, FOREIGN OPERATION MANAGER,
GLOBAL SECURITY & FINANCE COMPANY SPAIN, EMAIL:(drluisfernandez04@fsmail.net)TELEPHONE: 0034 67 7256839
Remember, all prize money must be claimed not later than 28th of August, 2005. Any claim not made by this date will be returned to the DEPARTMENT OF THE TREASURY.
NOTE: In order to avoid unnecessary delays and complications, please
remember to quote your reference and batch numbers in all correspondences
with us; or your Claim Agent. Furthermore, should there be any change of
address, please do inform your Claim Agent as soon as possible. An
original copy of your lucky winning ticket and your deposit certificate
will be sent to you by your Claim Agent, DR LUIS FERNANDEZ.
CONGRATULATIONS!!!!
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,
ANGELA MANNI (MRS)
PRESIDENT.
N.B. PLEASE CONTACT YOUR CLAIMS AGENT. ANYBODY BELOW 18YEARS IS AUTOMATICALLY DISQUALIFIED.
^ permalink raw reply
* ¡ß ºñ¾Æ±×¶ó , ½Ã¾Ë¸®½º Á¤Ç° !! ¡Ý ¿©¼ºÈïºÐÁ¦..ÆÇ¸Å.!!
From: Ashley Rowe @ 2005-08-12 21:18 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 957 bytes --]
^ permalink raw reply
* [ÀÚ°ÝÁõÁ¤º¸]»çȸº¹Áö»ç ÀÚ°ÝÁõ¼öÇèÀڷḦ ¹«·á·Îµå¸³´Ï´Ù!!! kk uyhawmjrvm
From: Le Grand @ 2005-08-12 21:13 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 1901 bytes --]
^ permalink raw reply
* ´ëÃâÀÚ±ÝÀÌ ÇÊ¿äÇÑÁ÷ÀåÀÎÀÌ¸é ´©±¸³ª°¡´ÉÇÕ´Ï´Ù!! m
From: isctshblfaugz4648485196 @ 2005-08-12 21:03 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 1084 bytes --]
^ permalink raw reply
* ¹«º¸Áõ ÀÎÅ׳ÝÃʰ£Æí´ëÃâ ½ÂÀÎÀ² 100%!! widsk zq x
From: an_77 @ 2005-08-12 21:00 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 1019 bytes --]
^ permalink raw reply
* ´©±¸³ª °¡Àå ³·ÀºÀÌÀ²·Î °¡Àå ºü¸£°Ô´ëÃâ¹ÞÀ¸¼¼¿ä. e l
From: Rodolfo Sheldon @ 2005-08-12 20:35 UTC (permalink / raw)
To: majordomo
[-- Attachment #1: Type: text/html, Size: 690 bytes --]
^ permalink raw reply
* ¸¸18¼¼ ÀÌ»óÀ̸鴩±¸³ª Ãëµæ°¡´É"¾à¿ë½Ä¹°°ü¸®»ç"·Î¹Ì·¡¸¦ ÁغñÇϼ¼¿ä! jc
From: Timothy Daniel @ 2005-08-12 20:10 UTC (permalink / raw)
To: netdev
[-- Attachment #1: Type: text/html, Size: 822 bytes --]
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox