mailfactory permissions problem

M

Michael Pope

I'm running ruby 1.8 under FreeBSD 7.0 and I'm trying to use mailfactory
for normal users (ie: not admin users).

If I start my script as a privileged user such as root or a person in
the wheel group I don't have a problem. If I start the script as a
normal user though I get this error:

<code>
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original
_require': no such file to load -- mailfactory (LoadError)
from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`require'
from ./test.rb:8
</code>

Here is the script I'm trying to get working correctly:

<code>
#!/usr/bin/env ruby

require 'rubygems'
require 'net/smtp'
require 'mailfactory'
require 'logger'

mail = MailFactory.new()
mail.to = "(e-mail address removed)"
mail.from = "(e-mail address removed)"
mail.subject = "Testing"
mail.text = "testing"

begin
Net::SMTP.start("mail.lan", 25){ |smtp|
smtp.send_message(mail.to_s(), mail.from, [mail.to,
mail.from])
}
rescue Exception => e
print "Exception occured: " + e
end
</code>
 
M

Michael Pope

SOLVED.

Had to change permissions from 774 to 775 on the following directories
/usr/local/lib/ruby/gems
/usr/local/lib/ruby/gems/1.8
/usr/local/lib/ruby/gems/1.8/*
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top