Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Blogging via email

    How do we make CF do what blogger.com does in putting up new blog listings
    simply by posting an email to a particular adddress?

    Is there a way to have CF look for a new email every x minutes or so and
    then act upon it?

    I know that is a very broad (basic) breakdown of what needs to be done - but
    it could be that simple.

    Thank you
    Chris

    --
    Chris Luksha
    Echo Web Services
    Making Your Website Resound
    [url]www.echowebservices.com[/url]


    Chris Guest

  2. Similar Questions and Discussions

    1. Blogging Engines and Servers
      I'm new to the blogging feature of Contribute and have to set up a blogging server as well. Can anyone recommend a good Blogging server for...
    2. Dreamweaver Extension for Blogging
      Google recently released a addin for Microsoft Word that allows bloggers to post directly from the Word interface. Does such an extension exist...
    3. Integrating Flash and AtomAPI for Blogging
      Hi, I have recently been interesting in blogging and have decided to create a web blog. What I would like to do, though, is incorporate the...
    4. Blogging
      Hello, You can also try building your own blog. Here is a tutorial to help you how to do this: ...
    5. Blogging community
      Hi, I am trying to start a(nother) blogging community site. I plan on doing this in PHP as ths is the language that i am most familiar with but i...
  3. #2

    Default Re: Blogging via email

    'Is there a way to have CF look for a new email every x minutes or so and
    then act upon it?'

    Sure... cfschedule.
    rogben Guest

  4. #3

    Default Re: Blogging via email

    Chris wrote:
    > How do we make CF do what blogger.com does in putting up new blog listings
    > simply by posting an email to a particular adddress?
    >
    > Is there a way to have CF look for a new email every x minutes or so and
    > then act upon it?
    >
    > I know that is a very broad (basic) breakdown of what needs to be done - but
    > it could be that simple.
    >
    > Thank you
    > Chris
    >
    CF itself can't receive mail (there was another thread about this
    recently) but using cfpop and cfschedule you could have CF retrieve
    email from an inbox every few minutes, then parse the contents of the
    email and insert the contents into a database or whatever you would need
    to do to get the blog content where it needs to be.

    Matt

    --
    Matt Woodward
    Team Macromedia - ColdFusion
    mpwoodward *TMM* Guest

  5. #4

    Default Re: Blogging via email

    Cfschedule requires you have access to the server yes? My host is not yet
    allowing it because he is afraid of what everyone will do with it. :)



    --
    Chris Luksha
    Echo Web Services
    Making Your Website Resound
    [url]www.echowebservices.com[/url]
    "mpwoodward *TMM*" <mpwoodward@gmail.com> wrote in message
    news:d38chp$4ns$2@forums.macromedia.com...
    > Chris wrote:
    >> How do we make CF do what blogger.com does in putting up new blog
    >> listings simply by posting an email to a particular adddress?
    >>
    >> Is there a way to have CF look for a new email every x minutes or so and
    >> then act upon it?
    >>
    >> I know that is a very broad (basic) breakdown of what needs to be done -
    >> but it could be that simple.
    >>
    >> Thank you
    >> Chris
    >>
    >
    > CF itself can't receive mail (there was another thread about this
    > recently) but using cfpop and cfschedule you could have CF retrieve email
    > from an inbox every few minutes, then parse the contents of the email and
    > insert the contents into a database or whatever you would need to do to
    > get the blog content where it needs to be.
    >
    > Matt
    >
    > --
    > Matt Woodward
    > Team Macromedia - ColdFusion

    Chris Guest

  6. #5

    Default Re: Blogging via email

    'Cfschedule requires you have access to the server yes?' No, since it's just a
    tag. However, your host can certainly disable it. So if cfschedule is out,
    time to fall back on a kludge. Use a scheduler on your desktop to fire up wget
    or cURL and have it request your mail-fetcher every X number of minutes.

    rogben Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139