Re: [Radiant] mailer and post_to_page? option

2009-10-15 Thread nx
I know one issue with it was an error occurring when the form was
posted; it was a bug in rack. This may have been fixed in 0.8.1...

On Wed, Oct 14, 2009 at 9:16 PM, Sean Cribbs seancri...@gmail.com wrote:
 Travis D. Warlick, Jr. wrote:

 So, is it safe to say that having mailer.post_to_page? turned on really
 ought to be the only behavior? I honestly can't see why someone would choose
 to have the ugly URLs that you get when it's turned off.  Would there be an
 uprising if this option was removed?

 I agree with you. I've pushed for it in the past, in fact I reimplemented it
 after it had been removed at some point.  What say the community?

 Sean
 ___
 Radiant mailing list
 Post:   Radiant@radiantcms.org
 Search: http://radiantcms.org/mailing-list/search/
 Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


[Radiant] Mailer extension not working, but doesn't give much clues why not

2009-10-15 Thread Simon Rönnqvist

  Hi!

I've been spending half night and half day trying to figure out why my  
mailer extension isn't working properly. When I hosted the site at a  
Dreamhost PS (using passenger) everything worked just fine. Now when  
hosting on a Ubuntu Hardy server running Ruby Enterprise Edition +  
passenger it just redirects from the form at http://xhtml.fi/contact  
to http://xhtml.fi/pages/12/mail#mailer, no mail is being sent and the  
production.log says:


Processing MailController#create (for 85.134.8.172 at 2009-10-15  
15:06:39) [POST]
  Session ID:  
BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo

SGFzaHsABjoKQHVzZWR7AA==--fa092d73a8aac022a2e6f97c79ffacf9ac27df32
  Parameters: {page_id=12, action=create, mailer= 
{message=Test message, name=Simon, email=si...@iki.fi},  
controller=mail}

Sent mail to i...@xhtml.fi
Completed in 0.19994 (5 reqs/sec) | Rendering: 0.00032 (0%) | DB:  
0.00402 (2%) | 200 OK [http://xhtml.fi/pages/12/mail]


I've tried different smtp-settings in environment.rb primarily:
ActionMailer::Base.smtp_settings = {
  :address = smtp.MY-HOSTING-COMPANY
}
...at Dreamhost it worked without that setting deafulting to localhost  
I guess.
You are free to test at http://xhtml.fi/contact and compare to how it  
works at http://old.xhtml.fi/contact when hosted at Dreamhost.


Might there be some gem that I'm missing? Otherwise I don't know what  
I might be missing, since I'm using Radiant 0.7.1 checked out right  
from the repo (with Rails in vendor). I'm using these extensions:

  archive enkoder_tags multi_sitetextile_filter
  archive_page_order  mailer   page_attachments
  drag_order  markdown_filter  textile_editor
(Multi site is this version, that hides other sites than their own  
from normal users. http://github.com/sniemela/radiant-multi-site-extension 
 ) Anyways... all of this works on Dreamhost. One funny thing though  
is that sometime the http://xhtml.fi/pages/12/mail#mailer page throws  
in some content from another of my multi_site sites.


And here's a list of the gems that I've got installed at the new server:
actionmailer (2.3.4, 2.3.3, 2.3.2)
actionpack (2.3.4, 2.3.3, 2.3.2)
activerecord (2.3.4, 2.3.3, 2.3.2)
activeresource (2.3.4, 2.3.3, 2.3.2)
activesupport (2.3.4, 2.3.3, 2.3.2)
fastthread (1.0.7)
mysql (2.7)
passenger (2.2.5)
postgres (0.7.9.2008.01.28)
rack (1.0.0)
radiant (0.8.1, 0.8.0, 0.7.1)
rails (2.3.4, 2.3.3, 2.3.2)
rake (0.8.7, 0.8.4)
RedCloth (4.2.2, 4.1.9)
rmagick (2.11.0, 2.10.0)
rspec (1.2.9, 1.2.8, 1.2.6)
rspec-rails (1.2.7.1, 1.2.6)
rubygems-update (1.3.5)
sqlite3-ruby (1.2.5, 1.2.4)

Just let me know if you want me to provide any more info, since I'm  
pretty clueless and don't really know what hints could be useful. Any  
help is very much appreciated!


  cheers, Simon
PS. I tried using just the mail-function in php and that didn't get  
the mail delivered either (that is without using any other smtp-server).

___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] Mailer extension not working, but doesn't give much clues why not

2009-10-15 Thread qutic development
Do you send the mail directly with the Ubuntu machine? Is postfix or  
whatever you use running?


If you try to deliver the mail not over the Ubuntu machine, you need  
to specify an account (to prevent an open relay...):


ActionMailer::Base.smtp_settings = {
  :address= my.mailserver.com,
  :domain = example.com,
  :port   = 25,
  :authentication = :plain, # or whatever you need
  :user_name  = my.usern...@example.com,
  :password   = abcdefg
}

jerry


On 15.10.2009, at 14:36, Simon Rönnqvist wrote:


 Hi!

I've been spending half night and half day trying to figure out why  
my mailer extension isn't working properly. When I hosted the site  
at a Dreamhost PS (using passenger) everything worked just fine. Now  
when hosting on a Ubuntu Hardy server running Ruby Enterprise  
Edition + passenger it just redirects from the form at http://xhtml.fi/contact 
 to http://xhtml.fi/pages/12/mail#mailer, no mail is being sent and  
the production.log says:


Processing MailController#create (for 85.134.8.172 at 2009-10-15  
15:06:39) [POST]
 Session ID:  
BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo

SGFzaHsABjoKQHVzZWR7AA==--fa092d73a8aac022a2e6f97c79ffacf9ac27df32
 Parameters: {page_id=12, action=create,  
mailer={message=Test message, name=Simon, email=si...@iki.fi 
}, controller=mail}

Sent mail to i...@xhtml.fi
Completed in 0.19994 (5 reqs/sec) | Rendering: 0.00032 (0%) | DB:  
0.00402 (2%) | 200 OK [http://xhtml.fi/pages/12/mail]


I've tried different smtp-settings in environment.rb primarily:
   ActionMailer::Base.smtp_settings = {
 :address = smtp.MY-HOSTING-COMPANY
   }
...at Dreamhost it worked without that setting deafulting to  
localhost I guess.
You are free to test at http://xhtml.fi/contact and compare to how  
it works at http://old.xhtml.fi/contact when hosted at Dreamhost.


Might there be some gem that I'm missing? Otherwise I don't know  
what I might be missing, since I'm using Radiant 0.7.1 checked out  
right from the repo (with Rails in vendor). I'm using these  
extensions:

 archive enkoder_tags multi_sitetextile_filter
 archive_page_order  mailer   page_attachments
 drag_order  markdown_filter  textile_editor
(Multi site is this version, that hides other sites than their own  
from normal users. http://github.com/sniemela/radiant-multi-site-extension 
 ) Anyways... all of this works on Dreamhost. One funny thing though  
is that sometime the http://xhtml.fi/pages/12/mail#mailer page  
throws in some content from another of my multi_site sites.


And here's a list of the gems that I've got installed at the new  
server:

actionmailer (2.3.4, 2.3.3, 2.3.2)
actionpack (2.3.4, 2.3.3, 2.3.2)
activerecord (2.3.4, 2.3.3, 2.3.2)
activeresource (2.3.4, 2.3.3, 2.3.2)
activesupport (2.3.4, 2.3.3, 2.3.2)
fastthread (1.0.7)
mysql (2.7)
passenger (2.2.5)
postgres (0.7.9.2008.01.28)
rack (1.0.0)
radiant (0.8.1, 0.8.0, 0.7.1)
rails (2.3.4, 2.3.3, 2.3.2)
rake (0.8.7, 0.8.4)
RedCloth (4.2.2, 4.1.9)
rmagick (2.11.0, 2.10.0)
rspec (1.2.9, 1.2.8, 1.2.6)
rspec-rails (1.2.7.1, 1.2.6)
rubygems-update (1.3.5)
sqlite3-ruby (1.2.5, 1.2.4)

Just let me know if you want me to provide any more info, since I'm  
pretty clueless and don't really know what hints could be useful.  
Any help is very much appreciated!


 cheers, Simon
PS. I tried using just the mail-function in php and that didn't get  
the mail delivered either (that is without using any other smtp- 
server).

___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


[Radiant] Is the RedCloth extensions known not to work with 0.8.1?

2009-10-15 Thread Nate Turnage
I am trying to style a list item in a footer snippet and it is not working,
so I decided to try loading the redcloth extension. And now I am getting an
error about an unitialized constant in the redcloth_extension. Is the
redcloth extension still useful for 0.8.1?

This is what I am trying to do:

*(class1) List Item One
*(class2) List Item Two
*(class3) List Item Three

But instead of rendering this:

ul
li class=class1List Item One/li
li class=class2List Item Two/li
li class=class3List Item Three/li
/ul

It renders this:

p
*(class1) List Item Onebr
*(class2) List Item Twobr
*(class3) List Item Three
/p

Styling list items this way works on the Redcloth website:
http://redcloth.org/try-redcloth/

Should I report this as a bug somewhere?



~Nate
___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] Mailer extension not working, but doesn't give much clues why not

2009-10-15 Thread Simon Rönnqvist

  Hi!

Thanks for your answer!
Configuring postfix on the Ubuntu machine would of course be an option.

But what I'm trying to do is to use a smtp-server that does not  
require autentication when contacted from it's local network.


  cheers, Simon


On Oct 15, 2009, at 23:26 , qutic development wrote:

Do you send the mail directly with the Ubuntu machine? Is postfix or  
whatever you use running?


If you try to deliver the mail not over the Ubuntu machine, you need  
to specify an account (to prevent an open relay...):


ActionMailer::Base.smtp_settings = {
 :address= my.mailserver.com,
 :domain = example.com,
 :port   = 25,
 :authentication = :plain, # or whatever you need
 :user_name  = my.usern...@example.com,
 :password   = abcdefg
}

jerry


On 15.10.2009, at 14:36, Simon Rönnqvist wrote:


Hi!

I've been spending half night and half day trying to figure out why  
my mailer extension isn't working properly. When I hosted the site  
at a Dreamhost PS (using passenger) everything worked just fine.  
Now when hosting on a Ubuntu Hardy server running Ruby Enterprise  
Edition + passenger it just redirects from the form at http://xhtml.fi/contact 
 to http://xhtml.fi/pages/12/mail#mailer, no mail is being sent and  
the production.log says:


Processing MailController#create (for 85.134.8.172 at 2009-10-15  
15:06:39) [POST]
Session ID:  
BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo

SGFzaHsABjoKQHVzZWR7AA==--fa092d73a8aac022a2e6f97c79ffacf9ac27df32
Parameters: {page_id=12, action=create, mailer= 
{message=Test message, name=Simon,  
email=si...@iki.fi}, controller=mail}

Sent mail to i...@xhtml.fi
Completed in 0.19994 (5 reqs/sec) | Rendering: 0.00032 (0%) | DB:  
0.00402 (2%) | 200 OK [http://xhtml.fi/pages/12/mail]


I've tried different smtp-settings in environment.rb primarily:
  ActionMailer::Base.smtp_settings = {
:address = smtp.MY-HOSTING-COMPANY
  }
...at Dreamhost it worked without that setting deafulting to  
localhost I guess.
You are free to test at http://xhtml.fi/contact and compare to how  
it works at http://old.xhtml.fi/contact when hosted at Dreamhost.


Might there be some gem that I'm missing? Otherwise I don't know  
what I might be missing, since I'm using Radiant 0.7.1 checked out  
right from the repo (with Rails in vendor). I'm using these  
extensions:

archive enkoder_tags multi_sitetextile_filter
archive_page_order  mailer   page_attachments
drag_order  markdown_filter  textile_editor
(Multi site is this version, that hides other sites than their own  
from normal users. http://github.com/sniemela/radiant-multi-site-extension 
 ) Anyways... all of this works on Dreamhost. One funny thing  
though is that sometime the http://xhtml.fi/pages/12/mail#mailer  
page throws in some content from another of my multi_site sites.


And here's a list of the gems that I've got installed at the new  
server:

actionmailer (2.3.4, 2.3.3, 2.3.2)
actionpack (2.3.4, 2.3.3, 2.3.2)
activerecord (2.3.4, 2.3.3, 2.3.2)
activeresource (2.3.4, 2.3.3, 2.3.2)
activesupport (2.3.4, 2.3.3, 2.3.2)
fastthread (1.0.7)
mysql (2.7)
passenger (2.2.5)
postgres (0.7.9.2008.01.28)
rack (1.0.0)
radiant (0.8.1, 0.8.0, 0.7.1)
rails (2.3.4, 2.3.3, 2.3.2)
rake (0.8.7, 0.8.4)
RedCloth (4.2.2, 4.1.9)
rmagick (2.11.0, 2.10.0)
rspec (1.2.9, 1.2.8, 1.2.6)
rspec-rails (1.2.7.1, 1.2.6)
rubygems-update (1.3.5)
sqlite3-ruby (1.2.5, 1.2.4)

Just let me know if you want me to provide any more info, since I'm  
pretty clueless and don't really know what hints could be useful.  
Any help is very much appreciated!


cheers, Simon
PS. I tried using just the mail-function in php and that didn't get  
the mail delivered either (that is without using any other smtp- 
server).

___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] Stylesheet and articles not working

2009-10-15 Thread john muhl
On Thu, Oct 15, 2009 at 5:42 PM, Bhavin Patel mindtra...@gmail.com wrote:
 HiI am new to raidant cms.
 I posted my query but was not able to get a proper solution.

more likely you ignored the answer.
http://groups.google.com/group/radiantcms/msg/2f4c94f8ee3b7b9d?
___
Radiant mailing list
Post:   Radiant@radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant