Feature request

2002-02-20 Thread Riley Williams

Hi there.

One tweak I would like to see made to cvs is concerning the
`cvs diff` command.

On my Red Hat Linux based system, I note the following line in
the output of the `man diff` command...

-b  Ignore changes in amount of white space.

...which describes a feature that is very useful when somebody has
reindented the code in a particular file, so one can see the changes
that have been made without having to decide for each and every line
whether it's just a tweak in the whitespace layout.

Is there any possibility of this being implemented in the `cvs diff`
command or is this considered too esotoric a facility?

Best wishes from Riley.


___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs



Re: allow list patch

2002-02-20 Thread Mike Sutton

On 02/19/02 08:05:22, Mike Sutton wrote:
 I'll see if I can dig it up.  I believe its based on 1.10.8.  I have
 not ported it to 1.11.1p1 yet.
 
As promised.  See diff bellow.  The diff is against 1.10.  But you
should be able to get the idea of the patch.

-- 
Mike Sutton  | public class
SAIC | software_failure : management_failure
Beavercreek, OH  | 
Suttonm at saic .com | These are MY opinions, not SAIC's

 begin patch 
Index: doc/ChangeLog
===
RCS file: /cvs/misc_cvsroot/cvs/doc/ChangeLog,v
retrieving revision 1.1.1.9
retrieving revision 1.1.1.9.2.1
diff -u -r1.1.1.9 -r1.1.1.9.2.1
--- ChangeLog   1998/08/20 15:11:10 1.1.1.9
+++ ChangeLog   1998/08/24 15:58:23 1.1.1.9.2.1
@@ -1,3 +1,8 @@
+Mon Aug 24 10:31:38 EDT 1998 Mike Sutton suttonm@saic.[com
+
+   * cvs.texinfo: Added documentation for --allow-list pserver
+   option.
+
 Sun Jul 26 02:42:20 1998  Noel Cragg  [EMAIL PROTECTED]
 
* cvs.texinfo (config): TopLevelAdmin variable.
Index: doc/cvs.texinfo
===
RCS file: /cvs/misc_cvsroot/cvs/doc/cvs.texinfo,v
retrieving revision 1.1.1.9
retrieving revision 1.1.1.9.2.1
diff -u -r1.1.1.9 -r1.1.1.9.2.1
--- cvs.texinfo 1998/08/20 15:11:21 1.1.1.9
+++ cvs.texinfo 1998/08/24 15:58:25 1.1.1.9.2.1
@@ -2159,6 +2159,14 @@
 cvs --allow-root=/usr/cvsroot pserver
 @end example
 
+or
+
+@example
+2401  stream  tcp  nowait  root  /usr/local/bin/cvs
+cvs --allow-list=/etc/cvsroots.list pserver
+@end example
+
+
 You could also use the
 @samp{-T} option to specify a temporary directory.
 
@@ -2168,6 +2176,15 @@
 connect.  If there is more than one @sc{cvsroot}
 directory which you want to allow, repeat the option.
 
+The @samp{--allow-list} option specifies the file name
+containing the list of allowable @sc{cvsroot}
+directories.  The @samp{--allow-list} option is useful
+when many @sc{cvsroot} directories must be specified.
+Another advantage of the @samp{--allow-list} option is
+that inetd does not have to be restarted every time a
+new @sc{cvsroot} directory is added to the
+@samp{--allow-list} file.
+
 If your @code{inetd} wants a symbolic service
 name instead of a raw port number, then put this in
 @file{/etc/services}:
@@ -7047,6 +7064,10 @@
 Specify legal @sc{cvsroot} directory.  See
 @ref{Password authentication server}.
 
+@item --allow-list=@file{/etc/cvsroots.list}
+Specify a list of legal @sc{cvsroot} directories.  See
+@ref{Password authentication server}.
+
 @cindex authentication, stream
 @cindex stream authentication
 @item -a
@@ -9891,6 +9912,11 @@
 in @sc{cvs} 1.9 and older).  See @ref{Password
 authentication server}.
 
+@item --allow-list=@file{/etc/cvsroots.list}
+Specify a list of legal @sc{cvsroot} directories
+(server only) (not in @sc{cvs} 1.9 and older).  See
+@ref{Password authentication server}.
+
 @item -a
 Authenticate all communication (client only) (not in @sc{cvs}
 1.9 and older).  See @ref{Global options}.
@@ -12380,11 +12406,12 @@
 @c choice?  Texinfo gurus?
 @item cvs @var{command}: authorization failed: server @var{host} rejected access
 This is a generic response when trying to connect to a
-pserver server which chooses not to provide a
-specific reason for denying authorization.  Check that
-the username and password specified are correct and
-that the CVSROOT specified is allowed by --allow-root
-in inetd.conf.  See @ref{Password authenticated}.
+pserver server which chooses not to provide a specific
+reason for denying authorization.  Check that the
+username and password specified are correct and that
+the CVSROOT specified is allowed by --allow-root or
+--allow-list in inetd.conf.  See @ref{Password
+authenticated}.
 
 @item @var{file}:@var{line}: Assertion '@var{text}' failed
 The exact format of this message may vary depending on
Index: src/ChangeLog
===
RCS file: /cvs/misc_cvsroot/cvs/src/ChangeLog,v
retrieving revision 1.1.1.9
retrieving revision 1.1.1.9.2.1
diff -u -r1.1.1.9 -r1.1.1.9.2.1
--- ChangeLog   1998/08/20 15:09:11 1.1.1.9
+++ ChangeLog   1998/08/24 15:58:46 1.1.1.9.2.1
@@ -1,3 +1,13 @@
+Mon Aug 24 10:11:04 EDT 1998 Mike Sutton suttonm@saic.[com
+
+   * main.c: Added --allow-list option for specifying a file
+   contianing the list of allowed roots.
+
+   * root.c: Added root_allow_list routine to process the allowed
+   roots list file.
+   
+   * cvs.h: Added allow_root_list prototype.
+
 Thu Aug 13 11:15:24 1998  Noel Cragg  [EMAIL PROTECTED]
 
* version.c: Change version number to 1.10 and name to `Halibut'.
Index: src/cvs.h
===
RCS file: /cvs/misc_cvsroot/cvs/src/cvs.h,v
retrieving revision 1.1.1.9
retrieving 

Re: [Fwd: Help needed with bufferoverflow in cvs]

2002-02-20 Thread Matt Riechers

Martin Schulze wrote:
 
  | it seems that cvs (version 1.10.7 from Debians stable repos) has a
  | bufferoverflow but I'm but sure if it's exploitable
...
 klecker!joey(pts/15):~/tmp/webwml cvs diff -C`perl -e print 'a' x 300`  Makefile 
|| echo noe
...
 cvs server: invalid context length argument
 Terminated with fatal signal 11

The current stable release of CVS (1.11.1p1) seems to have fixed this. It does
not segfault on this command.

-Matt

___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs



Re: [Fwd: Help needed with bufferoverflow in cvs]

2002-02-20 Thread Martin Schulze

Matt Riechers wrote:
 Martin Schulze wrote:
  
   | it seems that cvs (version 1.10.7 from Debians stable repos) has a
   | bufferoverflow but I'm but sure if it's exploitable
 
  klecker!joey(pts/15):~/tmp/webwml cvs diff -C`perl -e print 'a' x 300`  
Makefile || echo noe
 
  cvs server: invalid context length argument
  Terminated with fatal signal 11
 
 The current stable release of CVS (1.11.1p1) seems to have fixed this. It does
 not segfault on this command.

Edit the local file and it will.

Regards,

Joey

-- 
No question is too silly to ask, but, of course, some are too silly
to answer.   -- Perl book

___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs



ðÒÏÇÒÁÍÍÙ ÄÌÑ ÒÅËÌÁÍÉÒÏ×ÁÎÉÑ ÓÅÂÑ × éÎÔÅÒÎÅÔÅ

2002-02-20 Thread yralav

1. Advanced Email Extractor - ×ÙÄÉÒÁÅÔ e-mail ÁÄÒÅÓÁ Ó ÓÁÊÔÏ× × éÎÔÅÒÎÅÔÅ (10 WMZ = 10 
ÄÏÌÌÁÒÏ×).
2. Mass Sender - ÐÒÏÇÒÁÍÍÁ ÄÌÑ ÒÁÓÓÙÌËÉ ÐÏ e-mail ÁÄÒÅÓÁÍ (ÂÅÓÐÌÁÔÎÙÊ ÄÏ×ÅÓÏË Ë ÐÅÒ×ÏÊ 
ÐÒÏÇÒÁÍÍÅ). 
3. Subman - ÐÒÏÇÒÁÍÍÁ á÷ôïíáô ÐÏ Á×ÔÏÍÁÔÉÞÅÓËÏÍÕ ÒÁÚÍÅÝÅÎÉÀ ÏÂßÑ×ÌÅÎÉÊ ÎÁ ÄÏÓËÉ 
ÏÂßÑ×ÌÅÎÉÊ × éÎÔÅÒÎÅÔÅ. âÁÚÁ 3208 ÒÁÚÄÅÌÏ× ÒÁÚÂÉÔÙÈ ÐÏ ÒÁÚÄÅÌÁÍ: îÅÄ×ÉÖÉÍÏÌÓÔØ, á×ÔÏ, 
óÔÒÏÊËÁ, ëÏÍÐØÀÔÅÒÙ É ÍÎÏÇÏÅ ÄÒÕÇÏÅ. (ÐÒÏÇÒÁÍÍÁ - 10 ÄÏÌÌÁÒÏ×, ÂÁÚÁ ÎÁ 3208 ÒÁÚÄÅÌÏ× - 
99 ÄÏÌÌÁÒÏ×.
[EMAIL PROTECTED] 

___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs



ÕñÒµ¹«Ë¾µç×ÓÉÌÎñ²¿·þÎñÏîÄ¿

2002-02-20 Thread zhenye4541

  ÕñÒµ¹«Ë¾µç×ÓÉÌÎñ²¿·þÎñÏîÄ¿


Î人ÕñÒµÒûË®É豸¿ª·¢ÓÐÏÞ¹«Ë¾×Ô1998Äê³ÉÁ¢ÒÔÀ´£¬±ü×ÅÆ·ÖÊ¡¢³ÏÐÅ¡¢·þÎñ¡¢´´Ðµľ­ÓªÀíÄÖÂÁ¦ÓÚ¾»Ë®É豸µÄ¿ª·¢ºÍÉÌÎñÐÅÏ¢µÄ·¢²¼ÊÂÒµ£¬ÒÀÍмÆËã»ú»¥ÁªÍøΪÔØÌ壬ÔÚÍøÂçÐÅÏ¢·¢²¼ºÍ´«²¥¹¤×÷ÖÐÈ¡µÃÁ˻Ի͵ÄÒµ¼¨£¬²¢»ýÀÛÁ˷ḻµÄÍøÂç×ÊÔ´ºÍÐÅÏ¢·¢²¼¾­Ñé¡£
ΪʵÏÖÍøÂçÐÅÏ¢×ÊÔ´¹²ÏíµÄÄ¿µÄ£¬ÎÒ¹«Ë¾Ö£ÖØÏòÉç»áÍƳö£º
1¡¢Öйú¸÷ÐÐÒµ¼°¸öÈ˵ç×ÓÓÊÏ䣨Email£©µØÖ·ÁÐ±í£¨ÉÏÒÚ¸öÓÊÏäµØÖ·Êý¾Ý¿â£©£»ÊÀ½ç¸÷¹ú¸÷ÐÐÒµ¼°¸öÈ˵ç×ÓÓÊÏ䣨Email£©µØÖ·ÁÐ±í£¬ÓÊÏäµØÖ·¸ß´ïÊýÒÚ£¬ÔùË͸ßËÙÓʼþ·¢ËÍÈí¼þ£¬²¢¸ù¾ÝÄúµÄÐèÒªÌṩ¸÷ÖÖÓÊÏäµÄµØÖ·ÁÐ±í¡£
2¡¢ÎªÄúÌṩ¿í´øÉÌÎñÐÅÏ¢´úÀí·¢ËÍ·þÎñ¡£ÎÒÃǵĸßËÙ·¢ËÍ·þÎñÆ÷¿ÉÒÔ°´ÄúµÄÐèÒª½«Ö¸¶¨µÄÄÚÈÝ·¢²¼µ½¸÷ÆóÒµ¡¢¸öÈËÓÊÏ䣻¼°ÊÀ½ç¸÷¹ú¸÷µØµÄÐÐÒµ·ÖÀ༰¸öÈËÐÅÏä
ÎÒÃǵķþÎñʹÄú×ã²»³ö»§£¬¼´¿É½«ÐÅÏ¢´«²¥µ½¸÷Ðи÷ÒµÄËÖÁǧ¼ÒÍò»§¡£ÎÒÃDZ£Ö¤£¬ÄÄÀïÓеçÄÔÍøÂ磬ÄúµÄÐÅÏ¢¾Í¿ÉÒÔ´«²¥µ½ÄÄÀï¡£
3¡¢Ìṩһ´Î¹ºÂò£¬ÖÕÉúÃâ·ÑÉý¼¶·þÎñ£¬ÎªÄú¹ºÂòµÄÓÊÏäµØÖ·ÌṩÃâ·ÑÉý¼¶¡¢¸üС£
4¡¢ÏêÇéÇëÓëÎÒÃÇÁªÏµ£¡ÎÒÃÇ»á24СʱΪÄúÌṩ×Éѯ¡¢·þÎñ£¡£¡£¡
£¨ÍøÖ·£ºhttp://www.china-everpure.com  http://www.yonjie-zy.com£©
ÁªÏµµç»°£º0086-027-86796627¡¢86775406¡¢86777009£¨Ò¹¼ä£©
ÎÒÃÇÖ£ÖسÐŵ£ºÎÒÃÇΪÄúÌṩµÄÓʼþµØÖ·¶¼Õæʵ¿É¿¿¡£
ÎÒÃÇÓµÓÐÊýÒÚ¸öÓʼþµØÖ·Êý¾Ý¿â£¬ÎÒÃǽ«ÎªÄúÌṩ×îÓÅÖʵķþÎñ!ÎÒÃǽ«ÊÇÄú21ÊÀ¼Í¸÷ÐÐÒµ³É¹¦ÈËÊ¿µÄÊ×Ñ¡!

ÖйúÐÐÒµ·ÖÀ฽±í£º

Ò»¡¢ÊÂÒµÐÔµ¥Î»£¨1874Íò£©
1¡¢Ñ§Ð£  2¡¢Ò½Ôº  3¡¢ÊÂÎñËù  4¡¢Íâó  5¡¢¼¼Êõ¼à¶½¾Ö  6¡¢×ʲúÆÀ¹À  7¡¢½Ìί  8¡¢±£°²  
9¡¢¿ÆÑÐËù  10¡¢Ô°ÒÕ  11¡¢µç̨  12¡¢µçÊǪ́  13¡¢³ö°æ¾Ö  14¡¢±¨Éç  15¡¢ÖÆƬ³§  16¡¢ÖÐ½é  
17¡¢¹«Ö¤
¶þ¡¢ÆóÒµ£¨¹«Ë¾£©£¨3464Íò£©
1¡¢»úе É豸  2¡¢½¨Öþ ½¨²Ä ×°ÊÎ  3¡¢Îå½ð  4¡¢µç×Ó  5¡¢¼ÆËã»ú 6¡¢»¥ÁªÍø 7¡¢·ÄÖ¯  
8¡¢»¯¹¤  9¡¢¼Òµç  10¡¢·þ×°  11¡¢·¿µØ²ú  12¡¢ÎïÒµ  13¡¢Ó¡Ë¢  14¡¢½ø³ö¿Ú  15¡¢Ê³Æ·  
16¡¢ÒûÁÏ  17¡¢²ÄÁÏ 18¡¢Í¨ÐÅ 19¡¢É̳¡  ³¬ÊÐ 20¡¢°ì¹«É豸  ÎÄ¾ß  21¡¢°ü×°  22¡¢±ö¹Ý  
·¹µê  ¾Æµê  23¡¢³ö°æ  24¡¢¿±Ì½ ²â»æ  25¡¢²ÍÒû  26¡¢Ð¬ ñ  27¡¢º½Ìì º½¿Õ  28¡¢¹¤ÒµÓÃÆ·  
29¡¢»áÒé Õ¹ÀÀ  30¡¢¼Ò¾ß  31¡¢½»Í¨ ÔËÊä  32¡¢¿ó²ú Ò±½ð ½ðÊô¼Ó¹¤  33¡¢ÂÃÐÐÉç ÂÃÓÎ  
34¡¢Å© ÁÖ ÄÁ Óã  35¡¢Æû³µ ĦÍгµ  36¡¢ÇṤ ÊÖ¹¤  37¡¢Çå½à  38¡¢Éç»á·þÎñ  39¡¢Ë®µç ¹©ÈÈ 
 40¡¢Êéµê  41¡¢ÑÌ  42¡¢¾Æ  43¡¢Ò½Ò© ±£½¡  44¡¢ÒÇÆ÷ ÒÇ±í  45¡¢ÒôÏì  46¡¢ÒôÏñ  47¡¢ÔìÖ½ 
Ö½ÖÆÆ·  48¡¢ÉúÎï¼¼Êõ ÉúÎ﹤³Ì  49¡¢Ê¯ÓÍ ÌìÈ»Æø  50¡¢µç×ÓÉÌÎñ  51¡¢ÓéÀÖ  52¡¢ÈÕÓÃÆ· 
Éú»îÓÃÆ·  53¡¢ÖÆÔì  54¡¢ËÜÁÏ Ëܽº
Èý¡¢½ðÈÚ£¨1018Íò£©
1¡¢ÒøÐÐ  2¡¢Ö¤È¯  3¡¢Í¶×ʹ«Ë¾  3¡¢ÅÄÂô  4¡¢ÐÅÍÐ  5¡¢±£ÏÕ  7¡¢·¿µØ²ú  8¡¢ÆóÒµ¹ÜÀí  
9¡¢¹ã¸æ  10¡¢È˲ŠÕÐƸ ÁÔÍ·  11¡¢´úÀí
ËÄ¡¢¸÷´óÃÅ»§ÍøÕ¾Ãâ·ÑÐÅÏ䣬ÐÂÐÂÈËÀàÏû·ÑȺÌåµÄ´ú±í£¬Ô̺­ÎÞÏÞÉÌ»úµÄԴȪ¡££¨Ô¼4000Íò£©

¹ú¼Ê·¶Î§
  ÑÇÌ«£ºÑÇÖÞ£­Ïã¸Û£­Ì¨Í壭мÓÆ£­Ó¡¶È£­ÈÕ±¾£­º«¹ú
  ÃÀÖÞ£º¼ÓÄôó£­Î÷°àÑÀ£­°ÍÎ÷£­Ä«Î÷¸ç£­°¢¸ùÍ¢
  Å·ÖÞ£ºÓ¢¹ú¡¢°®¶ûÀ¼£­·¨¹ú£­µÂ¹ú£­µ¤Âó£­Å²Íþ£­Èðµä£­Î÷°àÑÀ
  ÆäËü¹ú¼ÒºÍµØÇø

¹ºÂòÁªÏµ·½Ê½£º   È«³Æ£ºÎ人ÕñÒµÒûË®É豸¿ª·¢ÓÐÏÞ¹«Ë¾  
 µØÖ·£ºÖйúºþ±±Ê¡Î人ÊÐÎä²ýÇø¶«Í¤»¨Ô°108-1-102  Óʱࣺ430077
 ¿ª»§ÒøÐУºÖйú¹¤ÉÌÒøÐÐÎ人ÊÐÖ§ÐÐÐ춫·°ìÊ´¦
 ÒøÐÐÕʺţº3202006409000127042 
 ½»Í¨ÒøÐÐ̫ƽÑóÒ»¿¨Í¨£º40551260615682401£¨ÊÕ¿îÈË£ºÕÅÓý½¡£©

___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs



²»Ç×ÁÙ´ËÍøÕ¾¾ø¶ÔÊÇÄãµÄÒ»´óËðʧ£¡

2002-02-20 Thread ll

www.fcfree.comÖ÷Ì⹩ÇóÍøÕ¾ÊÇÒ»¸ö¸Õ¸ÕÍƳöµÄÈ«ÐÂÃâ·Ñ¹©Çó·¢²¼ÍøÕ¾£¬´ËÍøÕ¾
ÓµÓйØÓڹ㶫ÆóÒµ×ÊÁϵÄÃâ·Ñ¼È룬ȫ¹ú¸÷µØ¸÷Ê¡µÄÆóÒµ
²»ÂÛÄĸöÐÐÒµÄĸöµØÇøµÄר¼ÒÈ˲ţ¬Ïë³öÃû£¬ÏëÈ«Öйú£¬È«ÊÀ½çµÄÈ˶¼ÈÏʶÄ㣬
Á˽âÄ㣬À´µ½×¨¼ÒÈ˲ÅÊý¾Ý¿âµÄÃâ·Ñ¼È룻±ÏÒµÉúÃæÁÙ¾ÍÒµ£¬Ñ°ÕÒÒ»·ÝÀíÏëÊʺÏ×Ô
ÉíµÄ¹¤×÷¸Ú룬ÓÃÈ˵¥Î»ÄÜÕÒµ½ËùÐèµÄÈ˲ţ¬µÇ½±ÏÒµÉú×ÊÁÏÊý¾Ý¿âµÄÃâ·Ñ¼È룡
ÆóÒµ¹«Ë¾Ñ°ÕÒ²úÆ·´úÀíÉ̼ң¬ÀíÏëµÄºÏ×÷»ï°é£¬²»ÓÃÔÙ·Ñʱ·ÑÁ¦À²£¬Ö÷Ì⹩ÇóÍøÕ¾µÄ
´úÀíÉ̼ÒÃâ·Ñ¼ÈëÊý¾Ý¿âÌṩ¸øÄúÕâÑùµÄÒ»¸öȫеķþÎñ£¡
ÁíÍ⣬ÉÌÒµ·¢²¼£¬ÎªÆóÒµÌṩÎÞÏÞÉÌ»ú£¬¶àÕ¾Á¬·¢·þÎñ£¬ÓÐÃâ·ÑÐͺÍÊÕ·ÑÐÍÁ½ÖÖ£¬
Ãâ·ÑÐÍÒ»´Î¿É·¢²¼8¸öÍøÕ¾£¬ÊÕ·ÑÐÍÒ»´Î¿É·¢²¼100¸öÍøÕ¾£¬Ê¡Ê±Ê¡Á¦£¬×Ô¶¯Á¬·¢£¬ÊÕÒæ
¶à¶à£¬¸Ï¿ìµÇ½www.fcfree.com²»ÈÝ´í¹ýµÄ»ú»á£¬Ä㽫»áµÃµ½ºÜ¶à£¡



ʹÓü«ÐÇÓʼþȺ·¢£¬ÎÞÐëͨ¹ýÓʼþ·þÎñÆ÷£¬Ö±´ï¶Ô·½ÓÊÏ䣬ËٶȾø¶ÔÒ»Á÷£¡
ÏÂÔØÍøÖ·£ºhttp://love2net.51.net/£¬¸ü¶àÃâ·ÑµÄ³¬¿áÈí¼þµÈÄãÀ´Ï¡­¡­


INFORMATION
This message has been sent using a trial-run version
of the TSmtpRelayServer Delphi Component.


___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs



±ùÏä¿Õµ÷Ê¡µçÆ÷ÕÐÉÌ(Introductory to AiYong energy saver)

2002-02-20 Thread bug-cvs

×ð¾´µÄÏÈÉú/Ůʿ£º 

ÄúºÃ£¡Èç¹ûÎÒÃǵÄÓʼþ¸øÄú´øÀ´²»±ã£¬ÇëÄú°ïÎÒÃÇɾ³ý£¡

°®ÓÃÅÆÊ¡µçÆ÷--±ùÏä¿Õµ÷Ê¡µçÆ÷
³ÏÕ÷È«¹ú¸÷Ê¡ÊдúÀíÉÌ
Ò»ÖÖÐÂÐ͵ĽڵçÆ÷-±ùÏä¿Õµ÷Ê¡µçÆ÷ÃæÊÀÁË£¬¸Ã²úÆ·ÊǸù¾Ý¹ú¼Ò×îÐÂרÀû±ùÏä¡¢¿Õµ÷Æ÷µÄÊ¡µç×°ÖÃÉè¼Æ¶ø³É£¨×¨ÀûºÅ£ºZL99212326.7£©,ÈÙ»ñÏã¸ÛÖлª×¨Àû²©ÀÀ»á½ð½±ºÍÊÀ½ç·¢Ã÷¼Ò¹ú¼ÊЭ»á°ä·¢µÄ¹ú¼Ê·¢Ã÷½ð½±£»ÀûÓÃÊý×Ö¼¯³Éµç·µÈ¸ßм¼Êõʹ½ÚµçÂʸߴï30%×óÓÒ£¬²¢¾ßÓÐÀ´µçÑÓʱÆô¶¯±£»¤¹¦ÄÜ£¬ÄÜÑÓ³¤±ùÏä¡¢¿Õµ÷µÈÓõçÆ÷µÄʹÓÃÊÙÃü£¬Äܹ㷺ӦÓÃÓÚ¼ÒÍ¥¡¢±ö¹Ý¡¢É̳¡¡¢¹¤³§µÈÓÐÖÆÀäÉ豸ºÍµçÈÈÉ豸µÄ³¡Ëù¡£
ÊÊÓ÷¶Î§£º
AÐÍ£ºÊÊÓÃÓÚ±ùÏ䡢ѩ¹ñ¡¢ÒûË®»ú¡¢µçÈÈ̺¡¢µçůÆ÷µÈ¡£
BÐÍ£ºÊÊÓÃÓÚ´°ÐÍ¡¢¹Òʽ¡¢¹ñʽ¿Õµ÷¼°¸÷ÀàÀ䶳»úµÈ¡£
ÏÖÎÒ³§³ÏÕ÷È«¹ú¸÷Ê¡ÊдúÀíÉÌ£¬²¢¿ªÕ¹³§¼ÛÖ±ÏúÓʹºÒµÎñ£¬ÏêÇéÇë¿´ÎÒ³§ÍøÒ³¡£
ÁªÏµÈË£ºÔø¸£ÔÆ  ÔøÁÁ  
×Éѯµç»°£º86-20-84613439  86-013802832046  86-013609685760
ÍøÖ·£ºwww.aysdq.com.cn E-mail£º[EMAIL PROTECTED]


Dear gentleman /lady£º
How do you do! If the mails of we bring to you inconvenient and please help us to 
delete! 
The energy saver -- The electricity saving instrument for refrigerator and air 
condition.
(Advertise for the national each province and municipality sincerely and act as agent 
and develop the business of mail-ordering)
This product is designed and produced based on the latest standard of national 
refrigerator(patent No£ºZL99212326.7)£»Awarded gold prize from HK-and-To meet the 
demand of national and international market. New design£¬Easy operation and effective 
energy saving(Saving rate 15%-30%)¡£

Scope of application£º
A type£ºSuitable for refrigerator, snow cupboard, drinking machine, electric blanket, 
electric heater,etc..
B type£ºSuitable for window type, hanging type, the cupboard type air conditioner and 
all kinds of refrigerators,etc..

Now our factory advertise for national each province and municipality agents 
sincerely, develop price at factory mail-order business by direct selling, details 
think our factory webpage.

Contact person£º ZengFuYun   ZengLiang
The consulting telephone£º86-20-84613439  86-013802832046  86-013609685760
The website£ºwww.aysdq.com.cn E-mail£º[EMAIL PROTECTED]


___
Bug-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-cvs