You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(100) |
Jun
(134) |
Jul
(149) |
Aug
(123) |
Sep
(185) |
Oct
(122) |
Nov
(59) |
Dec
(127) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(128) |
Feb
(233) |
Mar
(210) |
Apr
(196) |
May
(85) |
Jun
(96) |
Jul
(76) |
Aug
(149) |
Sep
(65) |
Oct
(78) |
Nov
(121) |
Dec
(82) |
2006 |
Jan
(249) |
Feb
(181) |
Mar
(176) |
Apr
(156) |
May
(128) |
Jun
(102) |
Jul
(157) |
Aug
(80) |
Sep
(42) |
Oct
(49) |
Nov
(36) |
Dec
(42) |
2007 |
Jan
(64) |
Feb
(38) |
Mar
(45) |
Apr
(74) |
May
(26) |
Jun
(20) |
Jul
(17) |
Aug
(12) |
Sep
(40) |
Oct
(7) |
Nov
(14) |
Dec
(16) |
2008 |
Jan
(52) |
Feb
(49) |
Mar
(90) |
Apr
(80) |
May
(78) |
Jun
(82) |
Jul
(25) |
Aug
(8) |
Sep
(10) |
Oct
(11) |
Nov
(3) |
Dec
(17) |
2009 |
Jan
(12) |
Feb
(16) |
Mar
(20) |
Apr
(14) |
May
(17) |
Jun
(10) |
Jul
(13) |
Aug
(12) |
Sep
(21) |
Oct
(10) |
Nov
(30) |
Dec
(1) |
2010 |
Jan
(2) |
Feb
(7) |
Mar
(22) |
Apr
(6) |
May
(33) |
Jun
(5) |
Jul
(4) |
Aug
(38) |
Sep
(46) |
Oct
(23) |
Nov
(9) |
Dec
(5) |
2011 |
Jan
(21) |
Feb
(27) |
Mar
(1) |
Apr
(18) |
May
(12) |
Jun
(12) |
Jul
(10) |
Aug
(30) |
Sep
(4) |
Oct
|
Nov
(9) |
Dec
(19) |
2012 |
Jan
(26) |
Feb
(6) |
Mar
(8) |
Apr
(7) |
May
(3) |
Jun
|
Jul
(10) |
Aug
(1) |
Sep
(18) |
Oct
(5) |
Nov
|
Dec
(1) |
2013 |
Jan
(27) |
Feb
|
Mar
(11) |
Apr
(14) |
May
|
Jun
(1) |
Jul
|
Aug
(7) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(25) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(2) |
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ryan U. <ne...@ic...> - 2007-02-26 15:09:28
|
On Tue, Feb 27, 2007 at 12:34:22AM +1000, Sam Moffatt wrote: >=20 > This is not a generic "I do not know how to use Linux" problem forum, > if you are new to Linux get a distro on a physical machine or > VMware/qemu and learn that way. When you have a problem with coLinux, > please come back and ask it. I found the problem, smbfs/cifsfs are built into the kernel statically instead of as modules, and smbmount was not in my path because my profile was not being read. (Attempting to setup a common cygwin/colinux home directory.) You can knock off the pretense, by the way - even elite experts such as yourself should agree that it is unconventional to build these modules statically, and I could not find a kernel config file anywhere in the coLinux distribution. --=20 Ryan Underwood, <ne...@ic...> |
From: Ryan U. <nem...@ic...> - 2007-02-26 14:38:05
|
On Sun, Feb 25, 2007 at 11:30:13AM -0000, peter green wrote: >=20 > > I posted a feature request on the sourceforge page that cifsfs/smbfs > > support be added to the kernel config for coLinux so that the shares of > > the Windows host can be mounted. Is there a compelling reason why it > > should *not* be there? > last i checked smbfs was already there. I installed the latest user release (i.e., one with 2.6.12-co-0.7.1 kernel) and the smbfs/cifsfs modules do not exist, even while silly ones like XFS and minix are there. --=20 Ryan Underwood, <ne...@ic...> |
From: Sam M. <pa...@gm...> - 2007-02-26 14:34:25
|
Samba provides the following: mount -t smb -o username=username,password=password //hostname/sambamount /path/to/your/mount/point Or in your fstab you can use the following: //hostname/sambamount /path/to/your/mount/point smb rw,user,defaults,noauto 0 0 then as 'username' you can run mount /path/to/your/mount/point and it will ask you for the password (alternatively you can override that with the following: //hostname/sambamount /path/to/your/mount/point smb rw,user,defaults,noauto,username=username 0 0 What is also possible (but "DONT DO THIS AT HOME KIDS") is putting the password in as well: //hostname/sambamount /path/to/your/mount/point smb rw,user,defaults,noauto,username=username,password=password 0 0 This is not a generic "I do not know how to use Linux" problem forum, if you are new to Linux get a distro on a physical machine or VMware/qemu and learn that way. When you have a problem with coLinux, please come back and ask it. Sam On 26/02/07, Ryan Underwood <ne...@ic...> wrote: > On Sun, Feb 25, 2007 at 12:03:45AM -0800, Bruce Pinsky wrote: > > Ryan Underwood wrote: > > > I posted a feature request on the sourceforge page that cifsfs/smbfs > > > support be added to the kernel config for coLinux so that the shares of > > > the Windows host can be mounted. Is there a compelling reason why it > > > should *not* be there? > > > > Uh...Samba? > > smbclient does not allow you to mount the SMB shares of the Windows > host. > > It is also incredibly tedious to use compared to a filesystem mount. > > -- > Ryan Underwood, <ne...@ic...> > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > > iD8DBQFF4gPaIonHnh+67jkRAtLHAJ49gIAN7nGOgxVblXecRapltG5lgQCfbgF5 > 9YUgiaW7I7Aqg2KOkG11fqU= > =uBjy > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > coLinux-users mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-users > > |
From: Ryan U. <ne...@ic...> - 2007-02-25 21:47:25
|
On Sun, Feb 25, 2007 at 12:03:45AM -0800, Bruce Pinsky wrote: > Ryan Underwood wrote: > > I posted a feature request on the sourceforge page that cifsfs/smbfs > > support be added to the kernel config for coLinux so that the shares of > > the Windows host can be mounted. Is there a compelling reason why it > > should *not* be there? >=20 > Uh...Samba? smbclient does not allow you to mount the SMB shares of the Windows host. It is also incredibly tedious to use compared to a filesystem mount. --=20 Ryan Underwood, <ne...@ic...> |
From: Olukayode V. <sp...@b0...> - 2007-02-25 17:48:26
|
Hi, Chaepest CALIS and VAGRA online. http://parkerokay+now.com Remove "+" from the link. scooping up the flowers and handing them to Fleur with her wand. Mr. Diggory, you next. Fleur glided back to her seat, smiling at Cedric as he passed her. |
From: Holger K. <hol...@gm...> - 2007-02-25 15:33:41
|
neoborn schrieb: > colinux-daemon.exe kernel=vmlinux initrd=initrd.gz mem=64 > cobd0=Fedora5-2gb.ext3 cobd1=swap.img cofs0=C:\Temp eth0=slirp > root=/dev/cobd0 fastboot nogui > > But if I try to launch it via the batch.bat I get an error: > > C:\coLinux>colinux-daemon.exe -t nt -c neo.colinux.xml > Cooperative Linux Daemon, 0.7.1 > Compiled on Mon Jan 1 03:59:29 2007 > > XML configuration files are obsolete. Please pass command line > options, or use '@' to pass a command-line compatible configuration > file (e.g. @config.txt) The error message can't get any clearer. Colinux does not use xml files any more. So don't use them. Whatever is in your batch.bat will not work. > Also why would you want to run this as a service? To access colinux even if nobody is logged in on Windows. Or to run a service that has to always on, like a dhcpd and named. > Is it possible to have > the screen look the same as a regular Linux tty screen ( i.e. all black > maximized text window?)? which would look like a full screen dos window. yes. Use -t nt and just press ALT ENTER (you can make a shortcut to cmd.exe that starts fullscreen). Or login with putty and make it fullscreen. |
From: peter g. <plu...@P1...> - 2007-02-25 11:31:56
|
> I posted a feature request on the sourceforge page that cifsfs/smbfs > support be added to the kernel config for coLinux so that the shares = of > the Windows host can be mounted. Is there a compelling reason why it > should *not* be there? last i checked smbfs was already there. |
From: Bruce P. <be...@wh...> - 2007-02-25 08:04:26
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ryan Underwood wrote: > I posted a feature request on the sourceforge page that cifsfs/smbfs > support be added to the kernel config for coLinux so that the shares of > the Windows host can be mounted. Is there a compelling reason why it > should *not* be there? > > > Uh...Samba? - -- ========= bep -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF4ULgE1XcgMgrtyYRAu5vAJ9qmhpxngZjDxmibmgW4qUv3pjxugCg0955 FFVLmeACLK8IGFxrRldcsIA= =CEWS -----END PGP SIGNATURE----- |
From: neoborn <neo...@ho...> - 2007-02-25 00:15:57
|
Hello Guys, I have successfully got the CoLinux to run with the Fedora core 5 with a shortcut to the fedora5-start.bat which contains: colinux-daemon.exe kernel=vmlinux initrd=initrd.gz mem=64 cobd0=Fedora5-2gb.ext3 cobd1=swap.img cofs0=C:\Temp eth0=slirp root=/dev/cobd0 fastboot nogui But if I try to launch it via the batch.bat I get an error: C:\coLinux>colinux-daemon.exe -t nt -c neo.colinux.xml Cooperative Linux Daemon, 0.7.1 Compiled on Mon Jan 1 03:59:29 2007 XML configuration files are obsolete. Please pass command line options, or use '@' to pass a command-line compatible configuration file (e.g. @config.txt) daemon: exit code 82e0b401 daemon: error - CO_RC_ERROR_ERROR, line 45, file src/colinux/user/daemon.c (23) Also why would you want to run this as a service? Is it possible to have the screen look the same as a regular Linux tty screen ( i.e. all black maximized text window?)? which would look like a full screen dos window. Can anyone help because I really really like this application. Thanks in advance. Neoborn |
From: Elinor C. <orb...@br...> - 2007-02-24 07:12:01
|
This gem is really movable!! Lookup: GDKICurrent: $0.13 5 Day Target price: $0.95Expected: Steadily = climb for the top! All signs show that this one is going to Explode. See bullish news online right now, colinux-users. |
From: Ryan U. <nem...@ic...> - 2007-02-23 23:33:13
|
I posted a feature request on the sourceforge page that cifsfs/smbfs support be added to the kernel config for coLinux so that the shares of the Windows host can be mounted. Is there a compelling reason why it should *not* be there? --=20 Ryan Underwood, <ne...@ic...> |
From: Mark W. <mar...@gm...> - 2007-02-23 17:03:35
|
Since migrating to 0.7.1, I'm getting intermittent BSOD on both machines I've tried it on, one with an Athlon 64 Mobile and the other with a Pentium M. It runs fine for days until it shows up, but when it does, I get: KERNEL_STACK_INPAGE_ERROR STOP 0x00000077 0xC0000185,0xC0000185,0x00000000,0x45970000 I've never been able to capture a dump. Both of these are running on machines with 2 gig of memory, 640 megs devoted to CoLinux, with no swap space. |
From: Holger K. <hol...@gm...> - 2007-02-22 08:12:51
|
Wisut Hantanong schrieb: > As you can see below that I got my COM4 mapped to ttys0 but I don't > know how to start using it. please suggest me command to test that > port is working in coLinux and command to login to my device using > that port. Which package should I emerge ? minicom would be a start, if that exists in gentoo Usually a user that wants to use a serial line in linux must be member of the group uucp. |
From: Wisut H. <wi...@gm...> - 2007-02-22 05:56:18
|
Hi, I want to work with rs232 serial terminal like in windows hyperterminal. My device is connected via com4 port and already work well on hyperterminal. How can I do the same in coLinux. I am using Gentoo 2006.1 As you can see below that I got my COM4 mapped to ttys0 but I don't know how to start using it. please suggest me command to test that port is working in coLinux and command to login to my device using that port. Which package should I emerge ? This is my config file. #*********************************************************************************** kernel=vmlinux initrd=initrd.gz mem=512 cobd1=myFS\swap_1024Mb cobd0=myFS\gentoo-2006.1-i686-wisut.linuxfs eth0=tuntap,,00:11:22:33:44:55 root=/dev/cobd0 ro ttys0=COM1,"BAUD=115200 PARITY=n DATA=8 STOP=1 dtr=on rts=on" #*********************************************************************************** and this is what I got from command prompt. *********************************************************************************** D:\MyWorks\TimaWorks\coLinux>colinux-daemon @myConfig\Gentoo-2006.1.cfg.txt Cooperative Linux Daemon, 0.8.0 Compiled on Tue Oct 3 14:23:41 2006 using 'vmlinux' as kernel image configuring 512 MB of virtual RAM mapping cobd1 to \??\D:\MyWorks\TimaWorks\coLinux\myFS\swap_1024Mb mapping cobd0 to \??\D:\MyWorks\TimaWorks\coLinux\myFS\gentoo-2006.1-i686-wisut. linuxfs configured TAP at '' device as eth0 MAC address: 00:11:22:33:44:55 using 'initrd.gz' as initrd image mapping cofs31 to \??\D:\MyWorks\TimaWorks\coLinux mapping ttys0 to COM4 kernel boot parameters: 'root=/dev/cobd0 ro' *********************************************************************************** |
From: <r.b...@co...> - 2007-02-21 05:05:27
|
Zachary Kline wrote: > Hello, > I'm experiencing some serious trouble trying to get the 2005.1 image of= > Gentoo to work. It seems to not have /dev/cobd devices, for whatever > reason, Did you see example.conf ? I'm using these parameters: kernel=3Dvmlinux cobd0=3Df:\coLinux\Gentoo-2005.1-stage3-ext3 cobd1=3Df:\coLinux\fs_512Mb.swap root=3D/dev/cobd/0 mem=3D256 eth0=3Dslirp,00:07:00:01:02:03,tcp:10022:22/tcp:5901:5901 It booted fine, but there are a couple of details to make networking and = sshd work: dhcp did strange things but I seem to have messed it using a fixed = address first; sshd needs some missing devices, pty and ptmx. > and booting into a static dev isn't helpful because I don't have > any way to add swap. > Also, udev fails unable to create the cobd devices, claiming a lack of > space. =20 I haven't used udev and IIRC it's not supported yet in coLinux 0.7.1 . > Any advice would be greatly appreciated. --=20 Ren=E9 Berber |
From: Carly J. <tmi...@gp...> - 2007-02-21 01:30:06
|
This one will explode.. Lookup: GDKICurrent: $0.14 5 Day Target price: $0.95Expected: Steadily = climb for the top. Insider Buying Alert!! Check the news of GDKI, colinux-users!!! |
From: Zachary K. <zk...@zk...> - 2007-02-21 01:15:17
|
Hello, I'm experiencing some serious trouble trying to get the 2005.1 image of Gentoo to work. It seems to not have /dev/cobd devices, for whatever reason, and booting into a static dev isn't helpful because I don't have any way to add swap. Also, udev fails unable to create the cobd devices, claiming a lack of space. Any advice would be greatly appreciated. Thanks, Zack. |
From: Mert S. <tec...@ho...> - 2007-02-21 01:06:43
|
Normally I install Fedora using qemu and then make it colinux ready Now I am curious if there is also another way by not using qemu but directly using the boot drive, like the knoppix version with you could use as live cd. As far as I know they changed the initrd for the knoppix cd so it started with colinux. I have tried the following - extract the initrd from the fedora core DVD. It starts with fedora and complains about not having drivers for the cdrom/hd where the rpms are. I extracted data from Fedora initrd and tried to add it with colinux initrd. >From this mix I created a new initrd using cpio. Gave same problem about not having drivers for the cdrom/hd. I am not sure whether the solution is at this direction. Has someone done this before, or does someone had a tip? With regards Mert _________________________________________________________________ Hotmail en Messenger on the move http://www.msn.nl/services |
From: Loraine H. <dko...@Ea...> - 2007-02-19 20:32:49
|
HOT ALERT. Sym8oL: GDKICurr Price: $0.14 5 Day Target price: $0.95Action: Aggresive = Buy/Hold... Short-term KST. Insider Buying Alert!! colinux-users, take a look at the hottest news!!! |
From: Zachary K. <zk...@zk...> - 2007-02-16 08:13:41
|
Hello, This is just a message to say, 'Wow!', or the equivalent thereof. For those people aroud here who might not know, Emacspeak is a method for making the Emacs text editor fully speech-enabled under Linux. It lets a blind person use the editor for much the same things as a sighted person would--programming with full audio syntax highlighting included. This has traditionally been impossible to use on Windows, but that changed tonight. I was able to use the old enlightenment sound daemon trick to route the speech output from Emacspeak to my Windows laptop which ran the daemon. No, performance wasn't stellar, but still. I am continually amazed at the abilities of a system like CoLinux to do this sort of thing so easily. The program runs--and I was able to send mail using VM, which speaks volumes for the useability. Granted, for normal shell access I still use a Windows screen reader to read the NT command prompt window, but that too might not be necesary in the near future. I don't know. Just thought I'd drop a line to say that the seemingly difficult has been accomplished, and that I love CoLinux. Cheers, Zack. |
From: < <war...@co...> - 2007-02-14 06:40:04
|
真島洋子です。 ひとみさんのプロフィールは見ていただけました? アナタにひとみさんを紹介した事を伝えたら、ドキドキしながらメールを待っているみたいなんです。 一日中メールを気にしてるとか。 現在、当サークルの男性は少ないのですが ひとみさんは今日までで3人の男性にメールしたそうですが…。 「結婚してる所為か、反応が無いんだけど…」って淋しいがってました。 まだメールしていなかったらチャンスですよ!! ひとみさんは沢山アピールされるとすぐにその気になる人です。 ※この情報は内緒ですよ。 本当に性格の良い出来た女性なので、嫌な思いはまず無いと思いますよ♪ ★ひとみさんのプロフィールはコチラ http://wwwr.power.ne.jp/oz2/ |
From: w.goesgens <roo...@ou...> - 2007-02-12 20:24:05
|
<html><body> I've seen various precompiled linux images with nice applications preconf= igured available at: http://www.vmware.com/vmtn/appliances/directory/ technicaly they're there to be used with vmware and contain a partition t= able instead of a flat image file... but, can't colinux do cobda from such an image and read the partitions in= side the image? After adding /lib/modules for the colinux kernel it should be fully usabl= e then, right? Wilfried Goesgens </body></html> |
From: Adriana H. <ous...@jo...> - 2007-02-11 08:04:34
|
THE BULL REPORT!! Lookup: MISJCurrent: $0.17Target: $0.95Expected: Steadily climb for the = top!! We see this as a huge profit taking a deal.. Company info: Medical Institutional Services Corporation was founded by the needof = innovated and technological focus on customer service in the = MedicalSupply & Pharmaceutical Industry.... MISJ have released very hot news. Check this out, colinux-users.. |
From: Margret Y. <umo...@ic...> - 2007-02-09 22:38:22
|
THE BULL REPORT!!! Sym8oL: MISJCurr Price: $0.17Target one: $0.95Action: Aggresive = Buy/Hold. 800%+ profit (short term).. Information: Medical Institutional Services Corporation was founded by the needof = innovated and technological focus on customer service in the = MedicalSupply & Pharmaceutical Industry.! See bullish news online right now, colinux-users!!! |
From: <la...@01...> - 2007-02-05 12:37:28
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv=Content-Type content="text/html; charset=windows-1255"> </head> <body style="FONT-FAMILY: Tahoma"> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 4.9pt 0pt 0cm; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 20pt; COLOR: #cc0066; FONT-FAMILY: Tahoma"><font size=7>"הצלחה מעשית" </font></span></b></p> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 4.9pt 0pt 0cm; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 20pt; COLOR: #cc0066; FONT-FAMILY: Tahoma">מתיאוריה למעשה</span></b></p> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 4.9pt 0pt 0cm; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 20pt; COLOR: #cc0066; FONT-FAMILY: Tahoma">הסדנה המשולבת להצלחה בשיווק רשתי </span></b></p> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 16pt; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><o:p><font color=#333399><span lang=HE style="FONT-SIZE: 18pt; COLOR: #cc0066; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><img src="http://www.topper.org.il/_Uploads/ImagesGallery/417gesher.jpg" border=0><o:p></o:p></span> </font></o:p></span></b></p> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 18pt; COLOR: #cc0066; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">הדרך להשיג כל מטרה אותה אתם מציבים לעצמכם<br></span></b><b><span lang=HE style="FONT-SIZE: 18pt; COLOR: #cc0066; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">באמצעות שילוב 3 טכניקות מעשיות שהוכיחו עצמן בעולם הרחב<o:p></o:p></span></b></p> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 18pt; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><o:p><font color=#333399></font></o:p></span></b></p> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 16pt; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><o:p><font color=#333399><a href="http://213.8.103.239/dll/cts/rekcilc.asp?kamb=dalit2">לפרטים לחצו כאן </a></font></o:p></span></b> <p class=MsoNormal dir=rtl style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><b><span lang=HE style="FONT-SIZE: 16pt; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><o:p><font color=#333399></font></o:p></span></b></p><span lang=HE style="FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><o:p><font color=#333399> </font></o:p></span> <p></p> <p align=center><b><span lang=HE dir=rtl style="FONT-SIZE: 18pt; COLOR: #333399; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: HE">יום מדהים יצירתי ושמח, דלית</span></b></p> <p align=center><b><span lang=HE dir=rtl style="FONT-SIZE: 18pt; COLOR: #333399; FONT-FAMILY: Arial; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: HE"><a href="la...@01..."><font size=3>להסרה לחצו כאן</font> </a></span></b></p> </body> </html> |