<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The Open Questions Page</title>
	<atom:link href="http://justanasterisk.com/the-open-questions-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://justanasterisk.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 11 Aug 2011 13:57:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: ab</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-849</link>
		<dc:creator>ab</dc:creator>
		<pubDate>Thu, 27 May 2010 15:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-849</guid>
		<description>Hi Dave,
As I understand your question - you want to email or text in a task and then have it updated on your linux txt file.  You say you would use Autohotkey, but can&#039;t because of linux?

Have you tried python?  If I were to attempt this, I&#039;d probably write a python script to check a gmail account, grab the most recent email, take the subject line and append it to my text file... 

Ignoring the &quot;do this every X seconds/minutes&quot; part of the code, the basic idea would be something like:
&lt;code&gt;
import imaplib
import re
import string

account = &quot;justanasterisk&quot;
password = &quot;password&quot;
m = imaplib.IMAP4_SSL(&#039;imap.gmail.com&#039;, 993)
m.login(account,password)
#login to the mailbox
m.select(&#039;INBOX&#039;)

#now that you have the inbox selected, get the first message&#039;s header:
val = m.fetch(startstr, &#039;(BODY[HEADER] FLAGS)&#039;)
header =  val[1][0][1]
subre = re.compile(r&#039;Subject:.*\r&#039;)
subre2 = subre.search(header)
subject = subre2.group()
#now that you have the subject, append that to your text file
myfile = open(&quot;todo.txt&quot;, &#039;w&#039;)
#this line is probably wrong:
myfile.write(subject) #CHECK THIS BEFORE YOU TRY IT...
&lt;/code&gt;

Let me know if you actually try this, I&#039;d be curious to see if it works :)

Good luck!
~ab</description>
		<content:encoded><![CDATA[<p>Hi Dave,<br />
As I understand your question &#8211; you want to email or text in a task and then have it updated on your linux txt file.  You say you would use Autohotkey, but can&#8217;t because of linux?</p>
<p>Have you tried python?  If I were to attempt this, I&#8217;d probably write a python script to check a gmail account, grab the most recent email, take the subject line and append it to my text file&#8230; </p>
<p>Ignoring the &#8220;do this every X seconds/minutes&#8221; part of the code, the basic idea would be something like:<br />
<code><br />
import imaplib<br />
import re<br />
import string</p>
<p>account = "justanasterisk"<br />
password = "password"<br />
m = imaplib.IMAP4_SSL('imap.gmail.com', 993)<br />
m.login(account,password)<br />
#login to the mailbox<br />
m.select('INBOX')</p>
<p>#now that you have the inbox selected, get the first message's header:<br />
val = m.fetch(startstr, '(BODY[HEADER] FLAGS)')<br />
header =  val[1][0][1]<br />
subre = re.compile(r'Subject:.*\r')<br />
subre2 = subre.search(header)<br />
subject = subre2.group()<br />
#now that you have the subject, append that to your text file<br />
myfile = open("todo.txt", 'w')<br />
#this line is probably wrong:<br />
myfile.write(subject) #CHECK THIS BEFORE YOU TRY IT...<br />
</code></p>
<p>Let me know if you actually try this, I&#8217;d be curious to see if it works :)</p>
<p>Good luck!<br />
~ab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-845</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 23 May 2010 04:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-845</guid>
		<description>Hi there,  I&#039;ve recently gotten into a variation of todo.txt called &quot;task&quot; (see here: http://taskwarrior.org/projects/show/taskwarrior/) a command line task application which keeps all your tasks in one text file including project headings, tags etc.., syncing across computers with dropbox.  I have a cell phone with sms and email ability and would love to be able to send a one-line entry to my text file while I&#039;m away from a computer, e.g. &quot;t add get bigger pump pro: pond +home&quot;.  I&#039;m not smart enough to install/use fetchmail, and was envisioning appending a text line via email or sms to some sort of online text file, then pulling out all the lines with a script and sending them to a terminal (using autokey - I&#039;m on Ubuntu, otherwise I&#039;d use autohotkey) to enter them into the todo.txt file once I was back at my computer.  

How would you approach such a task?</description>
		<content:encoded><![CDATA[<p>Hi there,  I&#8217;ve recently gotten into a variation of todo.txt called &#8220;task&#8221; (see here: <a href="http://taskwarrior.org/projects/show/taskwarrior/" rel="nofollow">http://taskwarrior.org/projects/show/taskwarrior/</a>) a command line task application which keeps all your tasks in one text file including project headings, tags etc.., syncing across computers with dropbox.  I have a cell phone with sms and email ability and would love to be able to send a one-line entry to my text file while I&#8217;m away from a computer, e.g. &#8220;t add get bigger pump pro: pond +home&#8221;.  I&#8217;m not smart enough to install/use fetchmail, and was envisioning appending a text line via email or sms to some sort of online text file, then pulling out all the lines with a script and sending them to a terminal (using autokey &#8211; I&#8217;m on Ubuntu, otherwise I&#8217;d use autohotkey) to enter them into the todo.txt file once I was back at my computer.  </p>
<p>How would you approach such a task?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ab</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-761</link>
		<dc:creator>ab</dc:creator>
		<pubDate>Mon, 19 Apr 2010 14:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-761</guid>
		<description>Sure Hugo - here is the source.  It&#039;s super easy and this is really all you need.

&lt;code&gt;Imports System
Imports System.IO
Imports System.Collections
Imports System.ComponentModel
Imports Google.GData.Client
Imports Google.GData.Extensions
Imports Google.GData.Calendar
Module main
    Public Sub Main()
        Dim vars() As String
        Dim myService = New CalendarService(&quot;Cal&quot;)
        Dim myEntry = New EventEntry()
        Dim postUri = New Uri(&quot;http://www.google.com/calendar/feeds/default/private/full&quot;)
        vars = Command.Split(&quot;_&quot;)
        Dim username As String = vars(0)
        Dim password As String = vars(1)
        Dim quickadd As String = vars(2)
        myService.setUserCredentials(username, password)
        myEntry.QuickAdd = True
        myEntry.Content.Content = quickadd

        myService.Insert(postUri, myEntry)
    End Sub
End Module&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sure Hugo &#8211; here is the source.  It&#8217;s super easy and this is really all you need.</p>
<p><code>Imports System<br />
Imports System.IO<br />
Imports System.Collections<br />
Imports System.ComponentModel<br />
Imports Google.GData.Client<br />
Imports Google.GData.Extensions<br />
Imports Google.GData.Calendar<br />
Module main<br />
    Public Sub Main()<br />
        Dim vars() As String<br />
        Dim myService = New CalendarService("Cal")<br />
        Dim myEntry = New EventEntry()<br />
        Dim postUri = New Uri("http://www.google.com/calendar/feeds/default/private/full")<br />
        vars = Command.Split("_")<br />
        Dim username As String = vars(0)<br />
        Dim password As String = vars(1)<br />
        Dim quickadd As String = vars(2)<br />
        myService.setUserCredentials(username, password)<br />
        myEntry.QuickAdd = True<br />
        myEntry.Content.Content = quickadd</p>
<p>        myService.Insert(postUri, myEntry)<br />
    End Sub<br />
End Module</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hugo</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-760</link>
		<dc:creator>Hugo</dc:creator>
		<pubDate>Mon, 19 Apr 2010 09:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-760</guid>
		<description>Hello,
that worked perfect!
Is the .exe open source? If yes, can you share the source please?
If not, no problem, i understand.

Thanks for your help!</description>
		<content:encoded><![CDATA[<p>Hello,<br />
that worked perfect!<br />
Is the .exe open source? If yes, can you share the source please?<br />
If not, no problem, i understand.</p>
<p>Thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ab</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-759</link>
		<dc:creator>ab</dc:creator>
		<pubDate>Sun, 18 Apr 2010 23:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-759</guid>
		<description>Hi Hugo,
The format is CLgCAL.exe username _ password _ statusupdate.  To be honest, I can&#039;t remember why I added the extra spaces (&quot; _ &quot; rather than &quot;_&quot;) but once you put it in this format, you should be able to use the command line without issues.  I hope this solves your problem, let me know if it works!

~ab</description>
		<content:encoded><![CDATA[<p>Hi Hugo,<br />
The format is CLgCAL.exe username _ password _ statusupdate.  To be honest, I can&#8217;t remember why I added the extra spaces (&#8221; _ &#8221; rather than &#8220;_&#8221;) but once you put it in this format, you should be able to use the command line without issues.  I hope this solves your problem, let me know if it works!</p>
<p>~ab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hugo</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-758</link>
		<dc:creator>Hugo</dc:creator>
		<pubDate>Sun, 18 Apr 2010 21:41:42 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-758</guid>
		<description>Hello,
it&#039;s possible to use CLgCAL as standalone in command line?
like:
c:\CLgCAL.exe user pass subject

is possibel, please, could you explain me how to do it? I think i&#039;m doing something wrong because its always crashing. Not sure what i&#039;m doing wrong.
If i use win+G shourtcut, on the pop up text, I type the event and everything works fine, if I use ms-dos and CLgCAL.exe alone, it&#039;s not working, maybe i&#039;m passing the wrong parameters.
can you give me an exemple please.

Thanks!</description>
		<content:encoded><![CDATA[<p>Hello,<br />
it&#8217;s possible to use CLgCAL as standalone in command line?<br />
like:<br />
c:\CLgCAL.exe user pass subject</p>
<p>is possibel, please, could you explain me how to do it? I think i&#8217;m doing something wrong because its always crashing. Not sure what i&#8217;m doing wrong.<br />
If i use win+G shourtcut, on the pop up text, I type the event and everything works fine, if I use ms-dos and CLgCAL.exe alone, it&#8217;s not working, maybe i&#8217;m passing the wrong parameters.<br />
can you give me an exemple please.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ab</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-736</link>
		<dc:creator>ab</dc:creator>
		<pubDate>Sat, 06 Mar 2010 11:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-736</guid>
		<description>Hi Jason,
I&#039;d be happy to recommend WP plugins for stats.  For just the basics, I use WP.com stats (created originally for wp.com).  For advanced stats, I use Google Analytics (I know it&#039;s not a plugin but it&#039;s amazing) combined with Headspace, a SEO plugin.  Headspace puts my google analytics code in all the right places.  I have also dabbled with StatPress, which I find a bit confusing but very powerful.

Hope that helps!
~ab</description>
		<content:encoded><![CDATA[<p>Hi Jason,<br />
I&#8217;d be happy to recommend WP plugins for stats.  For just the basics, I use WP.com stats (created originally for wp.com).  For advanced stats, I use Google Analytics (I know it&#8217;s not a plugin but it&#8217;s amazing) combined with Headspace, a SEO plugin.  Headspace puts my google analytics code in all the right places.  I have also dabbled with StatPress, which I find a bit confusing but very powerful.</p>
<p>Hope that helps!<br />
~ab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ab</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-735</link>
		<dc:creator>ab</dc:creator>
		<pubDate>Sat, 06 Mar 2010 11:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-735</guid>
		<description>Sweet.  Thanks for sharing.  I&#039;d be happy to update the real one with yours (as soon as I get a chance to test).  Would you like to contribute to it officially?

~ab</description>
		<content:encoded><![CDATA[<p>Sweet.  Thanks for sharing.  I&#8217;d be happy to update the real one with yours (as soon as I get a chance to test).  Would you like to contribute to it officially?</p>
<p>~ab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve R</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-734</link>
		<dc:creator>Steve R</dc:creator>
		<pubDate>Sat, 06 Mar 2010 11:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-734</guid>
		<description>Didn&#039;t get a reply about newlines in CLGemail, so decided to do it myself. Here&#039;s the result:

Imports System
Imports System.Net.Mail

Public Module Module1
    &#039;Original CLGmail was posted on justanaskterisk.com
    &#039;  modified 2/2010 by SR to allow choice of separator characters
    &#039;  and newlines in the body of the message and add some
    &#039;  error checking and recovery
    &#039; invoke as
    &#039;   CLGmail +username+password+server+port+emaildest+Subject+body
    &#039;     where the &quot;+&quot; used to separate the fields in the command
    &#039;     line is any command-line legal character (such as +#^)
    &#039;     that won&#039;t occur in any field except the body (where it will be
    &#039;     replaced by a newline (LF or CR/LF).
    Sub Main()
        &#039;get instance of system.net.mail.smtpClient (which does the work
        &#039; of sending the encoded email)
        Dim SmtpMail As New System.Net.Mail.SmtpClient

        &#039;set up variables before use
        &#039;give initial null values to make compiler happy
        Dim username As String = &quot;&quot; &#039;including the @domain.com (e.g. user@gmail.com)
        Dim password As String = &quot;&quot; &#039;case sensitive
        Dim emaildest As String = &quot;&quot;   &#039;message receipient&#039;s address
        Dim Subj As String = &quot;&quot;  &#039;Subject of Mail
        Dim Body As String = &quot;&quot; &#039;Message
        Dim Server As String = &quot;&quot; &#039;Server Name; smtp.gmail.com for gmail
        Dim Port As String &#039; normally 587 for Gmail
        Dim commandparts() As String = {&quot;&quot;, &quot;&quot;} &#039;array to hold command line parts

        &#039;set up defaults
        Dim splitchar As String = &quot;,&quot;
        Dim thiscommand As String = Command() &#039;default to command line parameters
        Dim lastcommandpart As Integer = 2
        If thiscommand.Length &lt; 5 Then
            thiscommand = &quot;+SMTP command not provided yet&quot;
        End If

        &#039;Enclosed within Try-Catch block to process errors
        Try
            &#039;we need 7 parameters to send mail (#0 to #6)
            Do Until lastcommandpart = 6
                &#039;allow user to abort if parameters not available
                If thiscommand.Length &lt; 5 Then
                    Throw New System.Exception(&quot;SMTPmail bad parameters&quot;)
                End If
                &#039;make first char of data string the split character
                splitchar = Left(thiscommand, 1)
                thiscommand = Mid(thiscommand, 2)
                &#039;we know lf can&#039;t be in command line, so use it to ignore body for now
                thiscommand = Replace(thiscommand, splitchar, vbLf, 1, 6)
                commandparts = thiscommand.Split(vbLf)
                lastcommandpart = commandparts.GetUpperBound(0)
                &#039; if number of parts  6, allow user to fix
                If lastcommandpart  6 Then
                    thiscommand = InputBox(&quot;Expected 6 parts but found &quot; &amp; CStr(lastcommandpart) &amp; vbCrLf &amp; &quot;SMTP string?(lf-splitchar,0user,1paswd,2server,3port,4to,5sub,6body&quot;, thiscommand)
                End If
            Loop
            &#039;put command parts into individual variables for clarity of reading
            username = commandparts(0)
            password = commandparts(1)
            Server = commandparts(2)
            Port = commandparts(3)
            emaildest = commandparts(4)
            Subj = commandparts(5)
            Body = commandparts(6)
            &#039;split body into lines if required
            Body = Body.Replace(splitchar, vbCrLf)

            &#039;Set the SMTP object&#039;s properties
            Dim mycredentials As New Net.NetworkCredential(username, password)
            SmtpMail.Host = Server
            SmtpMail.EnableSsl = True
            SmtpMail.Port = Port
            SmtpMail.UseDefaultCredentials = False
            SmtpMail.Credentials = mycredentials


            &#039;send the message
            SmtpMail.Send(username, emaildest, Subj, Body)
            &#039; if it works, we&#039;re all done
        Catch ex As Exception
            &#039;if there was an error, tell calling program about it
            MsgBox(&quot;Delivery Failure: &quot; &amp; ex.Source &amp; ex.Message)
            MsgBox(&quot;SMPTP data was:&quot; _
              &amp; vbCrLf &amp; &quot;username &quot; &amp; username _
              &amp; vbCrLf &amp; &quot;password &quot; &amp; password _
              &amp; vbCrLf &amp; &quot;Host(server) &quot; &amp; SmtpMail.Host _
              &amp; vbCrLf &amp; &quot; Port &quot; &amp; SmtpMail.Port _
              &amp; vbCrLf &amp; &quot;emaildest &quot; &amp; emaildest _
              &amp; vbCrLf &amp; &quot;subject &quot; &amp; Subj _
              &amp; vbCrLf &amp; &quot;body &quot; &amp; Body)
        End Try
    End Sub
End Module</description>
		<content:encoded><![CDATA[<p>Didn&#8217;t get a reply about newlines in CLGemail, so decided to do it myself. Here&#8217;s the result:</p>
<p>Imports System<br />
Imports System.Net.Mail</p>
<p>Public Module Module1<br />
    &#8216;Original CLGmail was posted on justanaskterisk.com<br />
    &#8216;  modified 2/2010 by SR to allow choice of separator characters<br />
    &#8216;  and newlines in the body of the message and add some<br />
    &#8216;  error checking and recovery<br />
    &#8216; invoke as<br />
    &#8216;   CLGmail +username+password+server+port+emaildest+Subject+body<br />
    &#8216;     where the &#8220;+&#8221; used to separate the fields in the command<br />
    &#8216;     line is any command-line legal character (such as +#^)<br />
    &#8216;     that won&#8217;t occur in any field except the body (where it will be<br />
    &#8216;     replaced by a newline (LF or CR/LF).<br />
    Sub Main()<br />
        &#8216;get instance of system.net.mail.smtpClient (which does the work<br />
        &#8216; of sending the encoded email)<br />
        Dim SmtpMail As New System.Net.Mail.SmtpClient</p>
<p>        &#8216;set up variables before use<br />
        &#8216;give initial null values to make compiler happy<br />
        Dim username As String = &#8220;&#8221; &#8216;including the @domain.com (e.g. <a href="mailto:user@gmail.com">user@gmail.com</a>)<br />
        Dim password As String = &#8220;&#8221; &#8216;case sensitive<br />
        Dim emaildest As String = &#8220;&#8221;   &#8216;message receipient&#8217;s address<br />
        Dim Subj As String = &#8220;&#8221;  &#8216;Subject of Mail<br />
        Dim Body As String = &#8220;&#8221; &#8216;Message<br />
        Dim Server As String = &#8220;&#8221; &#8216;Server Name; smtp.gmail.com for gmail<br />
        Dim Port As String &#8216; normally 587 for Gmail<br />
        Dim commandparts() As String = {&#8220;&#8221;, &#8220;&#8221;} &#8216;array to hold command line parts</p>
<p>        &#8216;set up defaults<br />
        Dim splitchar As String = &#8220;,&#8221;<br />
        Dim thiscommand As String = Command() &#8216;default to command line parameters<br />
        Dim lastcommandpart As Integer = 2<br />
        If thiscommand.Length &lt; 5 Then<br />
            thiscommand = &quot;+SMTP command not provided yet&quot;<br />
        End If</p>
<p>        &#039;Enclosed within Try-Catch block to process errors<br />
        Try<br />
            &#039;we need 7 parameters to send mail (#0 to #6)<br />
            Do Until lastcommandpart = 6<br />
                &#039;allow user to abort if parameters not available<br />
                If thiscommand.Length &lt; 5 Then<br />
                    Throw New System.Exception(&quot;SMTPmail bad parameters&quot;)<br />
                End If<br />
                &#039;make first char of data string the split character<br />
                splitchar = Left(thiscommand, 1)<br />
                thiscommand = Mid(thiscommand, 2)<br />
                &#039;we know lf can&#039;t be in command line, so use it to ignore body for now<br />
                thiscommand = Replace(thiscommand, splitchar, vbLf, 1, 6)<br />
                commandparts = thiscommand.Split(vbLf)<br />
                lastcommandpart = commandparts.GetUpperBound(0)<br />
                &#039; if number of parts  6, allow user to fix<br />
                If lastcommandpart  6 Then<br />
                    thiscommand = InputBox(&#8220;Expected 6 parts but found &#8221; &amp; CStr(lastcommandpart) &amp; vbCrLf &amp; &#8220;SMTP string?(lf-splitchar,0user,1paswd,2server,3port,4to,5sub,6body&#8221;, thiscommand)<br />
                End If<br />
            Loop<br />
            &#8216;put command parts into individual variables for clarity of reading<br />
            username = commandparts(0)<br />
            password = commandparts(1)<br />
            Server = commandparts(2)<br />
            Port = commandparts(3)<br />
            emaildest = commandparts(4)<br />
            Subj = commandparts(5)<br />
            Body = commandparts(6)<br />
            &#8216;split body into lines if required<br />
            Body = Body.Replace(splitchar, vbCrLf)</p>
<p>            &#8216;Set the SMTP object&#8217;s properties<br />
            Dim mycredentials As New Net.NetworkCredential(username, password)<br />
            SmtpMail.Host = Server<br />
            SmtpMail.EnableSsl = True<br />
            SmtpMail.Port = Port<br />
            SmtpMail.UseDefaultCredentials = False<br />
            SmtpMail.Credentials = mycredentials</p>
<p>            &#8216;send the message<br />
            SmtpMail.Send(username, emaildest, Subj, Body)<br />
            &#8216; if it works, we&#8217;re all done<br />
        Catch ex As Exception<br />
            &#8216;if there was an error, tell calling program about it<br />
            MsgBox(&#8220;Delivery Failure: &#8221; &amp; ex.Source &amp; ex.Message)<br />
            MsgBox(&#8220;SMPTP data was:&#8221; _<br />
              &amp; vbCrLf &amp; &#8220;username &#8221; &amp; username _<br />
              &amp; vbCrLf &amp; &#8220;password &#8221; &amp; password _<br />
              &amp; vbCrLf &amp; &#8220;Host(server) &#8221; &amp; SmtpMail.Host _<br />
              &amp; vbCrLf &amp; &#8221; Port &#8221; &amp; SmtpMail.Port _<br />
              &amp; vbCrLf &amp; &#8220;emaildest &#8221; &amp; emaildest _<br />
              &amp; vbCrLf &amp; &#8220;subject &#8221; &amp; Subj _<br />
              &amp; vbCrLf &amp; &#8220;body &#8221; &amp; Body)<br />
        End Try<br />
    End Sub<br />
End Module</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://justanasterisk.com/the-open-questions-page/comment-page-1/#comment-731</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 05 Mar 2010 21:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://justanasterisk.com/?page_id=879#comment-731</guid>
		<description>So I am an aspiring blogger these days and I was wondering if you could recommend a plugin or two for compiling site visit statistics?</description>
		<content:encoded><![CDATA[<p>So I am an aspiring blogger these days and I was wondering if you could recommend a plugin or two for compiling site visit statistics?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

