Search the web
Sign In
New User? Sign Up
weblogs-com
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 105   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: "kayarna-lopez861@..." <kayarna-lopez861@...>
Date: Wed Jan 18, 2006 2:08 pm
Subject: Dating on the net? It works! Really
kayarna-lopez861@...
Send Email Send Email
 
Damn, it has sure been a while... I just realized today that it's been 18 months
since I went out with a special lady       last, but I'm pretty happy to be
heading out tonight. I've had a bit of trouble finding ANY decent women lately
so I joined up at this place a couple of weeks ago
http://www.browsethepictures.info/rmcc . And   so far been doing pretty well,
just chatting to a few girls near me on Webcam and via the mail system on the
place, but this is the first one I've lined up. So anyway, wish me luck guys!!

#29 From: "kayarna-lopez861@..." <kayarna-lopez861@...>
Date: Mon Jan 9, 2006 4:12 pm
Subject: Looking for your perfect match?
kayarna-lopez861@...
Send Email Send Email
 
Well I just got engaged! I can't believe it,       just last year I was
beginning to think i would never meet anyone. I'm 25 already and I thought it
was all over. After some recommendations from a buddy I joined up here:
http://www.lookieherenow.info/podp and after 2 weeks I was already meeting up
with a beauty. Well, 14 months later and where still together and planning our
marriage for later this year        =)

#28 From: Joel Nylund <jnylund@...>
Date: Fri Nov 4, 2005 11:35 am
Subject: Re: Re: Weblogs.com respose error
jnylund
Online Now Online Now
Send Email Send Email
 
sure, here is a working java class that pings weblogs.
Joel


--- andy_kishore <andy_kishore@...> wrote:

> Hi Joel,
>
> Thanks for your reply....i tried what you said but
> same results again
> ...Could you send me sum code you might have written
> which works.
> That would be gr8.
>
> Andy.
>
> --- In weblogs-com@yahoogroups.com, Joel Nylund
> <jnylund@y...> wrote:
> >
> > Andy, the length of this message is 205, I would
> put
> > the contents in a StringBuffer or String, then get
> the
> > length, use this variable in the "Content-lengh"
> field
> > of the header.
> >
> > thanks
> > Joel
> >
>
>
>
>
>
>
import java.net.*;
import java.io.*;
import java.util.*;
import java.net.URLEncoder;

public class WeblogsPing {

     public static final int SOCKET_TIMEOUT_VALUE = 60 * 1000;

     public static int PORT = 0;

     public static String IP = null;

     public Socket s = null;

     public PrintWriter out = null;

     public InputStream is = null;

     public static boolean soap = false;

     // Pass in rpc.weblogs.com 80 1
     // Pass in rpc.weblogs.com 80 1

     public static void main(String rgs[]) {

         IP="rpc.weblogs.com";
         PORT=80;

         boolean showPage = true;
         String url = null;

         url = " /RPC2";

         HTTPWrapper httpWrapper = new HTTPWrapper();
         int bcount = 0;
         StringBuffer sb = new StringBuffer();

         try {
             String data = null;
             data = "<?xml version=\"1.0\"?>\r\n" + "<methodCall>\r\n"
                    + "<methodName>weblogUpdates.ping</methodName>\r\n"
                    + "<params>\r\n" + "<param>\r\n"
                    + "<value>Joels Blog</value>\r\n" + "</param>\r\n"
                    + "<param>\r\n"
                    + "<value>http://feeds.feedburner.com/JoelsBlog/</value>\r\n"
                    + "</param>\r\n" + "</params>\r\n"
                    + "</methodCall>\r\n";
             Socket s = null;
             s = new Socket(IP, PORT);
             s.setSoTimeout(SOCKET_TIMEOUT_VALUE);
             PrintWriter out = new PrintWriter(s.getOutputStream());
             String output = ("POST " + url + " HTTP/1.0\r\n"
                              + "User-Agent: Java RPC Client (WinNT)\r\n"
                              + "Content-Length: " + data.length() +
"\r\n"+"Content-Type: text/xml\r\n\r\n");
             String finalOutput = output + data;
             System.out.println("outgoing request:\n" + finalOutput);
             out.print(finalOutput);
             out.flush();

             DataInputStream is = new DataInputStream(new BufferedInputStream(s
                                                                             
.getInputStream()));
             int thechar;
             while ((thechar = is.read()) != -1) {
                 bcount = bcount + 1;
                 sb.append((char) thechar);
             }

             is.close();
             out.close();
             s.close();

         } catch (Exception e) {
             e.printStackTrace();
         }



         System.out.println("Page of Length " + sb.length() + " returned");
         System.out.println(sb);


     }



}

#27 From: "andy_kishore" <andy_kishore@...>
Date: Fri Nov 4, 2005 5:16 am
Subject: Re: Weblogs.com respose error
andy_kishore
Offline Offline
Send Email Send Email
 
Hi Joel,

Thanks for your reply....i tried what you said but same results again
...Could you send me sum code you might have written which works.
That would be gr8.

Andy.

--- In weblogs-com@yahoogroups.com, Joel Nylund <jnylund@y...> wrote:
>
> Andy, the length of this message is 205, I would put
> the contents in a StringBuffer or String, then get the
> length, use this variable in the "Content-lengh" field
> of the header.
>
> thanks
> Joel
>

#26 From: Joel Nylund <jnylund@...>
Date: Thu Nov 3, 2005 4:00 pm
Subject: Re: Re: Weblogs.com respose error
jnylund
Online Now Online Now
Send Email Send Email
 
Andy, the length of this message is 205, I would put
the contents in a StringBuffer or String, then get the
length, use this variable in the "Content-lengh" field
of the header.

thanks
Joel


--- andy_kishore <andy_kishore@...> wrote:

> Hi,
>
> This is what my request looks like:
>
> // THIS IS WHERE I'M SETTING THE HEADERS
> con.setRequestProperty("Content-Type","text/xml");
> con.setRequestProperty("Host","rpc.weblogs.com");
> con.setRequestProperty("Content-length","250");
> con.setRequestMethod("POST");
>
> // THIS IS MY XML-RPC REQUEST
> writer.write("<?xml version=\"1.0\"?>");
> writer.write("<methodCall>");
>
writer.write("<methodName>weblogUpdates.ping</methodName>");
> writer.write("<params>");
> writer.write("<param>");
> writer.write("<value>Scripting News</value>");
> writer.write("</param>");
> writer.write("<param>");
>
writer.write("<value>http://www.scripting.com/</value>");
> writer.write("</param>");
> writer.write("</params>");
> writer.write("</methodCall>");
>
> --- In weblogs-com@yahoogroups.com, Joel Nylund
> <jnylund@y...> wrote:
> >
> > Andy, can you post the exact request you are
> sending,
> > typically I have seen this error when you send the
> > wrong content length (are you sure the length is
> 250?)
> > thanks
> > Joel
> >
>
>
>
>
>

#25 From: "andy_kishore" <andy_kishore@...>
Date: Thu Nov 3, 2005 12:46 pm
Subject: Re: Weblogs.com respose error
andy_kishore
Offline Offline
Send Email Send Email
 
Hi,

This is what my request looks like:

// THIS IS WHERE I'M SETTING THE HEADERS
con.setRequestProperty("Content-Type","text/xml");
con.setRequestProperty("Host","rpc.weblogs.com");
con.setRequestProperty("Content-length","250");
con.setRequestMethod("POST");

// THIS IS MY XML-RPC REQUEST
writer.write("<?xml version=\"1.0\"?>");
writer.write("<methodCall>");
writer.write("<methodName>weblogUpdates.ping</methodName>");
writer.write("<params>");
writer.write("<param>");
writer.write("<value>Scripting News</value>");
writer.write("</param>");
writer.write("<param>");
writer.write("<value>http://www.scripting.com/</value>");
writer.write("</param>");
writer.write("</params>");
writer.write("</methodCall>");

--- In weblogs-com@yahoogroups.com, Joel Nylund <jnylund@y...> wrote:
>
> Andy, can you post the exact request you are sending,
> typically I have seen this error when you send the
> wrong content length (are you sure the length is 250?)
> thanks
> Joel
>

#24 From: Joel Nylund <jnylund@...>
Date: Thu Nov 3, 2005 12:41 pm
Subject: Re: Weblogs.com respose error
jnylund
Online Now Online Now
Send Email Send Email
 
Andy, can you post the exact request you are sending,
typically I have seen this error when you send the
wrong content length (are you sure the length is 250?)
thanks
Joel


--- andy_kishore <andy_kishore@...> wrote:

> I tried pinging Weblogs through Java code but
> everytime i get the
> following response:
>
> < ? x m l v e r s i o n = " 1 . 0 " ? > < m e t h o
> d R e s p o n s e
> > < p a r a m s > < p a r a m > < v a l u e > < s t
> r u c t > < m e m
> b e r > < n a m e > m e s s a g e < / n a m e > < v
> a l u e > C a n '
> t & # 3 2 ; a c c e p t & # 3 2 ; t h e & # 3 2 ; p
> i n g & # 3 2 ; b
> e c a u s e & # 3 2 ; t h e & # 3 2 ; U R L & # 3 2
> ; m u s t & # 3 2
>  ; b e g i n & # 3 2 ; w i t h & # 3 2 ; h t t p : /
> / . < / v a l u
> e > < / m e m b e r > < m e m b e r > < n a m e > f
> l e r r o r < / n
> a m e > < v a l u e > < b o o l e a n > 1 < / b o o
> l e a n > < / v a
> l u e > < / m e m b e r > < / s t r u c t > < / v a
> l u e > < / p a r
> a m > < / p a r a m s > < / m e t h o d R e s p o n
> s e >
>
> I just can't figure out the error. I'm setting the
> Content-Type to
> 'text/xml' and Content-length to 250 and the url of
> my blog also
> contains http://. Please suggest me a solution.
>
>
>
>
>

#23 From: "andy_kishore" <andy_kishore@...>
Date: Thu Nov 3, 2005 12:27 pm
Subject: Weblogs.com respose error
andy_kishore
Offline Offline
Send Email Send Email
 
I tried pinging Weblogs through Java code but everytime i get the
following response:

< ? x m l v e r s i o n = " 1 . 0 " ? > < m e t h o d R e s p o n s e
> < p a r a m s > < p a r a m > < v a l u e > < s t r u c t > < m e m
b e r > < n a m e > m e s s a g e < / n a m e > < v a l u e > C a n '
t & # 3 2 ; a c c e p t & # 3 2 ; t h e & # 3 2 ; p i n g & # 3 2 ; b
e c a u s e & # 3 2 ; t h e & # 3 2 ; U R L & # 3 2 ; m u s t & # 3 2
  ; b e g i n & # 3 2 ; w i t h & # 3 2 ; h t t p : / / . < / v a l u
e > < / m e m b e r > < m e m b e r > < n a m e > f l e r r o r < / n
a m e > < v a l u e > < b o o l e a n > 1 < / b o o l e a n > < / v a
l u e > < / m e m b e r > < / s t r u c t > < / v a l u e > < / p a r
a m > < / p a r a m s > < / m e t h o d R e s p o n s e >

I just can't figure out the error. I'm setting the Content-Type to
'text/xml' and Content-length to 250 and the url of my blog also
contains http://. Please suggest me a solution.

#22 From: "bjsalas" <bjsalas@...>
Date: Sat Oct 22, 2005 3:35 am
Subject: I Love Blogs
bjsalas
Offline Offline
Send Email Send Email
 

I love blogs. Not only creating them, but also reading those created by others.

I have several, but my main blog, Bobbi Jo Online is located at www.bjsalas.com . Check it out it you want and let me know what you think.

bjsalas


#21 From: "weblogcom" <weblogcom@...>
Date: Mon Oct 17, 2005 10:12 pm
Subject: On Thursday October 20, 2005 Weblogs.com will change...
weblogcom
Offline Offline
Send Email Send Email
 
Please see the recent post at the VeriSign Infrablog for more details:
http://infrablog.verisignlabs.com/2005/10/weblogscom_cutover_1.html

#20 From: "vwilmot2000" <vincent@...>
Date: Fri Oct 7, 2005 7:11 am
Subject: cant find weblogs table
vwilmot2000
Offline Offline
Send Email Send Email
 
When I pinged Weblogs today I got an "cant find weblogs table" error.
Anybody know how to handle it ?

#19 From: weblogs-com@...
Date: Fri Sep 9, 2005 5:42 am
Subject: Follow my advice
weblogs-com@...
Send Email Send Email
 
Refinance your home now, take 30 seconds and fill out this free form.

http://homeloanszhdmqg.4ever.cc/

#18 From: "jnylund" <jnylund@...>
Date: Wed Jul 27, 2005 6:24 pm
Subject: Re: some help getting rpc and/or soap to work
jnylund
Online Now Online Now
Send Email Send Email
 
ignore the rpc issue, it was me, I wasnt sending the correct content
length. Still stuck on the soap issue, any ideas? now its redirecting
me to rpc.cadenhead.org....

Joel


--- In weblogs-com@yahoogroups.com, "jnylund" <jnylund@y...> wrote:
> I tried whats in the docs for soap and when I do a soap request it
> gets a 302 moved to /var/www/html, if I follow that I get a 404 file
> not found.
>
>
> for rpc, even weirder I get:
>     <value>Can't accept the ping because the URL must begin with
> http://.</value>
>
>
> (I cut and pasted the example from the rpc directions)
>
>
> any ideas for these?
>
> thanks in advance
> Joel

#17 From: "jnylund" <jnylund@...>
Date: Wed Jul 27, 2005 4:04 pm
Subject: some help getting rpc and/or soap to work
jnylund
Online Now Online Now
Send Email Send Email
 
I tried whats in the docs for soap and when I do a soap request it
gets a 302 moved to /var/www/html, if I follow that I get a 404 file
not found.


for rpc, even weirder I get:
     <value>Can't accept the ping because the URL must begin with
http://.</value>


(I cut and pasted the example from the rpc directions)


any ideas for these?

thanks in advance
Joel

#16 From: "bobtubesing" <bobtubesing@...>
Date: Wed Jul 20, 2005 3:37 am
Subject: Personal Blogs
bobtubesing
Offline Offline
Send Email Send Email
 
I have two blogs, which I contribute to when the mood strikes me. One
is a about a fictional character called Alvis Gogwecker, who has come
to the big city from a small town called Hootin Holler in a nearby
unknown state. The other is my view of things that strike me a bit odd,
peculiar, or funny. They are at:

http://alvisgogwecker.blogspot.com

http://thejoker2005.blogspot.com

Please feel free to share them.

#15 From: Patrick Ong <patrickong@...>
Date: Mon Jun 27, 2005 2:36 am
Subject: Re: Major function of a blog hosting site
patrickong
Offline Offline
Send Email Send Email
 
Hi Jess,

Just do a search at Yahoo or Google about Blogs and
you'll find millions of reasons you're looking for.
:-)

Pat
www.consultancy.com.sg


--- jlbaf <jlbaf@...> wrote:

> Hi,
>     Can someone explain and outline to me the 10
> major functions a blog
> hosting site should offer?? A million thankx if can
> help me.
> Jess
>
>
>






____________________________________________________
Yahoo! Sports
Rekindle the Rivalries. Sign up for Fantasy Football
http://football.fantasysports.yahoo.com

#14 From: "jlbaf" <jlbaf@...>
Date: Mon Jun 27, 2005 2:32 am
Subject: Major function of a blog hosting site
jlbaf
Offline Offline
Send Email Send Email
 
Hi,
     Can someone explain and outline to me the 10 major functions a blog
hosting site should offer?? A million thankx if can help me.
Jess

#13 From: "RWB" <raging_brown_buffalo@...>
Date: Sat May 21, 2005 12:45 pm
Subject: Web Blogs
raging_brown...
Offline Offline
Send Email Send Email
 
Web Blogs
A blog is a personal diary. A daily pulpit. A collaborative space. A
political soapbox. A breaking-news outlet. A collection of links. Your
own private thoughts. Memos to the world.
Your blog is whatever you want it to be. There are millions of them,
in all shapes and sizes, and there are no real rules.
In simple terms, a blog is a web site, where you write stuff on an
ongoing basis. New stuff shows up at the top, so your visitors can
read what's new. Then they comment on it or link to it or email you.
Or not.
Since Blogger was launched, almost five years ago, blogs have reshaped
the web, impacted politics, shaken up journalism, and enabled millions
of people to have a voice and connect with others.
http://groups.yahoo.com/group/Web_Blogs

#12 From: Khodadad Rezakhani <khodadad21@...>
Date: Sun Apr 24, 2005 2:18 am
Subject: Re: weblogs.com xml and transfer to Apache
khodadad21
Offline Offline
Send Email Send Email
 
all I know is that my pings are not taken into consideration by the system!  I am using an MT system, and the automatic pinging system works okay, but there is actually no update and I never see my weblog in the changes.xml. 
 
I also try to do it manually by going to the Ping Form and typing the address, and still nothing happens.  I check my friend's weblogs where they have my link, and it shows my last update was March 3rd!  I have not had any pings working for over a month, and I emailed the site and no one answered.
 
Khodadad
 


harald_hope <harald_hope@...> wrote:

Hello,

I noticed a couple of weeks ago that sometimes I couldn't access
the update record on http://www.weblogs.com for the blogger weblog at
http://www.linksmultiple.co.uk/15.html but the update record did
appear when
viewing the xml version at http://www.weblogs.com/changes.xml
although
periodically it did seem to hide behind a password so was
inaccessible.

That problem seems to have gone away now so I guess whatever
weblogs.com did on 20 April with moving stuff to Apache has worked OK.

Did anyone else have the same problem and if so is it fixed for you
too?






------------------------------------------------------------
Khodadad Rezakhani
khodadad@...
Quod capita tot sensus
-----------------------------------------------------------

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com


#11 From: "harald_hope" <harald_hope@...>
Date: Sat Apr 23, 2005 7:04 pm
Subject: weblogs.com xml and transfer to Apache
harald_hope
Offline Offline
Send Email Send Email
 
Hello,

I noticed a couple of weeks ago that sometimes I couldn't access
the update record on http://www.weblogs.com for the blogger weblog at
http://www.linksmultiple.co.uk/15.html but the update record did
appear when
viewing the xml version at http://www.weblogs.com/changes.xml
although
periodically it did seem to hide behind a password so was
inaccessible.

That problem seems to have gone away now so I guess whatever
weblogs.com did on 20 April with moving stuff to Apache has worked OK.

Did anyone else have the same problem and if so is it fixed for you
too?

#10 From: "Khodadad" <khodadad21@...>
Date: Tue Apr 5, 2005 7:34 am
Subject: Problem
khodadad21
Offline Offline
Send Email Send Email
 
I am using the MT system with my own domain name.  I have marked
the "ping these sites" in Preferences, so whenever I update my blog,
the weblogs.com is pinged.

It worked alright for a good two years up to two weeks ago.  Since
March 20th, I see that the pings go through with the MT, but my
position in the weblogs of the people who have linked to me is not
updated.  It seems like when the script is renewed, my weblog is not
marked "updated".  One of my friends has not gotten an update from
me since March 17th (I made an update today).  Another one of my
friends who has links to me actually now has TWO links showing up on
his blogrolling, but none updated.

What is the problem?

My weblog is www.vishistorica.com

Thanks everyone

Khodadad

#9 From: "Ajjee_Kaheeay" <crunchejoe@...>
Date: Wed Mar 30, 2005 5:59 am
Subject: Re: Ping question. Verify rss question.
crunchejoe
Offline Offline
Send Email Send Email
 
Hi,
I know u dont have a blog at blogger.com but their article about
pingin a blog might help u in some way.

http://help.blogger.com/bin/search.py?type=f&query=weblogs


--- In weblogs-com@yahoogroups.com, "Guess it........"
<vaifan77@y...>
wrote:
>
> Hello,
> I am new to the blog world. First question: How do you 'ping' a
site
> like google or weblogs?
>
> I went to a website to 'verify' my rss feeds and it gave me some
type
> of line errors. Can someone help? Please respond via email.
> thanks.
>
> Here is my new blog site:
>
> http://vaifan.myblogsite.com/blog

#8 From: "Guess it........" <vaifan77@...>
Date: Wed Mar 30, 2005 3:06 am
Subject: Ping question. Verify rss question.
vaifan77
Offline Offline
Send Email Send Email
 
Hello,
I am new to the blog world. First question: How do you 'ping' a site
like google or weblogs?

I went to a website to 'verify' my rss feeds and it gave me some type
of line errors. Can someone help? Please respond via email.
thanks.

Here is my new blog site:

http://vaifan.myblogsite.com/blog

#7 From: "austinwiltshire2002" <jobethegreat@...>
Date: Sun Feb 27, 2005 8:45 pm
Subject: RSS feed not working?
austinwiltsh...
Offline Offline
Send Email Send Email
 
I tried connecting to the changes.xml and also shortchanges.xml and I
couldn't seem to get a connection to either through my RSS reader in
thunderbird.  I d/l another RSS reader to see if it was thunderbird,
and  it didn't work either.  On shortchanges.xml, it seems to be a
valid XML file(in my browser) but it simply won't get picked up.
Anyone else having these issues?

#6 From: "richardingate" <richardingate@...>
Date: Mon Feb 21, 2005 1:58 am
Subject: Ping Spammer?
richardingate
Offline Offline
Send Email Send Email
 
Hi,

I'm very new to blogs and such! I have started a blog which is called
Abundant Buddha. I read an article by Rick Butts about blog and ping
and a site called Ping o matic. I have tried to use the site but have
been identified as a ping spammer. Please could someone suggest what
to do in this case, I don't think I am a spammer!

thanks
Richard
http://abundantbuddha.blogspot.com/

#5 From: "mariyamsharif" <mariyamsharif@...>
Date: Sat Jan 22, 2005 6:00 pm
Subject: What is XML-RPC ping??
mariyamsharif
Offline Offline
Send Email Send Email
 
hello all,
i'm a student of cs and currently i'm doing my final project. that is
a Weblog site for my university. i've gathered some information about
what weblog is how to use it and what's its purpose. so may say that
i dont have any previous knowledge about weblogs. my project is to
develop a weblog site that mantains the users' blogs added in the
form of RSS feeds just as my yahoo, and also gives the option to
publish our own blogs. currently im in a studying phase and im
gathering information about it. i've come to know about XML-RPC ping
that's used with weblogs but i don't know what it is for. so i want
you guys to plz help me out to understand it and how it can be useful
for my project. moreover i'd love to read your suggestions if you
inform me with.

Regards,
Mariyam Naveed

#4 From: "Paul Bausch" <pbausch@...>
Date: Mon Jan 10, 2005 10:21 pm
Subject: weblogs.com is down
pbausch2000
Offline Offline
Send Email Send Email
 
It looks like weblogs.com is down. Any ETA for being back up? Is
anyone out there?

#3 From: "microarraysindia" <microarraysindia@...>
Date: Fri Dec 10, 2004 10:03 am
Subject: Re: oops- what have I done to screw this up?
microarraysi...
Offline Offline
Send Email Send Email
 
hello
Pick a new template again and do customization, after u finish save
template changes and publish your entire blog to see the changes.
hope this helps.

dnamicro
http://dnamicroarrays.blogspot.com

--- In weblogs-com@yahoogroups.com, "paul grant" <zenseeds@s...>
wrote:
>
> Somehow in my editing of my template at Blogger I have removed the
> ability to add new post. I know I should be punished for playing
> with the page. What have I done and how can I fix it (I wonder.)
The
> page is at http://bringthemhome2.blogspot.com. Thanks in advance
for
> even taking a look (maybe my ignorance will bring a smile.)

#2 From: "paul grant" <zenseeds@...>
Date: Sat Nov 20, 2004 11:54 pm
Subject: oops- what have I done to screw this up?
followerofbasho
Offline Offline
Send Email Send Email
 
Somehow in my editing of my template at Blogger I have removed the
ability to add new post. I know I should be punished for playing
with the page. What have I done and how can I fix it (I wonder.) The
page is at http://bringthemhome2.blogspot.com. Thanks in advance for
even taking a look (maybe my ignorance will bring a smile.)

#1 From: "Pauline" <pch@...>
Date: Mon Oct 4, 2004 11:47 am
Subject: store a message in the archive
pc_hermans
Offline Offline
Send Email Send Email
 
Hi, i have a difficulty in my weblog.
How can i remove a message from the frontpage and put it in the
archive ?
I can not find an option to do this,
thanks in advance, kind regards, Pauline

Messages 1 - 30 of 105   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help