Displaying 20 results from an estimated 41 matches for "my_users".
Did you mean:
my_user
2007 Jun 23
2
End of File Error on index optmize
I was optimizing a 650MB using ferret (0.11.3) and I received the
following error. I''ve seen some people have similar issues but I
haven''t seen any resolutions. The contents of the index directory
follow the error. Has anyone seen anything like this and found a
resolution? Many thanks.
/mnt/apps/search/releases/20070622175637/script/../config/../vendor/
2006 Jan 28
1
Switchtower different svn repo urls from my local box and my shared hosting
I got problems running switchtower 0.10.0 when I try to run "rake deploy"
from my local box (windows) to my shared hosting
If I set the repository to (deploy.rb):
set :repository, "file:///home/[my_user]/repo/[my_app]/trunk"
My local box (windows) can''t reach the subversion repository located in
site5
If I set the repository to:
set :repository,
2010 Mar 11
1
Emails Disappearing -- Mystery
I got a case that I haven't been able to resolve. I hope somebody can
give me some hints.
One of our users is reporting emails disappearing in front of his eyes,
(Right ... emails filters at the client side ....)
Server does not have global sieve filter enabled (no file present), even
though this configuration is present:
sieve_global_path=/vmail/globalsieverc
User does not have
2006 Jan 27
6
Switchtower deploy error
I''m trying to deploy a rails app with no success.
I can execute: ''rake remote_exec ACTION=setup''
but when I try to execute : ''rake deploy''
I got this error:
loading configuration c:/ruby/lib/ruby/gems/1.8/gems/switchtower-0.10.0
/lib/switchtower/recipes/standard.rb
loading configuration ./config/deploy.rb
executing task deploy
transaction: start
2007 Dec 04
7
REST bug with form_for
Hi all, I am running on Windows XP sp2 with ruby 1.8.6, and rails
1.2.3
I am using REST, and have this in my view
<% form_for(:project,
:url => project_path(:user_id => @project.my_user, :id =>
@project),
:html => {:method => :put}) do |f| %>
The browser correctly gives
<form method="post" action="/users/2/projects/1">
2006 Jan 28
1
Advice on Optimization, and where to put what?
In my last post I was asking how I could check for the existance of a
record before inserting a new one and this was the helper method that I
was using to do this:
def already_friend_of?(friend)
begin
self.friends.find(friend.id)
true
rescue
false
end
end
I was told that this is not very efficient, as it hits the db every time
I call it. I completely agree and would like to
2004 Feb 26
0
Problem Authenticating on Windows NT-Domain via winbind
hi,
i know that the first thing i'll hear is rtfm. but i allready read it 4 times and spend some nights over this problem.
i got a debian woody (stable) linux box with samba 2.2.3a-12.3 and winbind for the samba version.
the nt-domain is PORTA#001-NT.
my first question is: is the # in the name a problem?
my second question: do i have to create a computer account on the pdc of the domain
2013 Dec 04
1
Question regarding quotas (is this a bug or intended behavior) ?
Hi,
I was wondering if this is a normal behavior (test was made using
Dovecot v2.2.9).
In my config, quotas are configured as follows:
plugin {
quota = dict:Userquota::file:%h/dovecot-quota
quota_rule = *:storage=1G
quota_rule2 = Trash:ignore
}
# doveadm mailbox status -u my_user "messages vsize" '*'
Trash messages=4997 vsize=229535631
Drafts messages=0 vsize=0
Sent
2008 Mar 19
2
rsync fails to exclude... sometimes?
Hello List.
I am using rsync to pull html files from a shared drive to 2 web server
boxes to keep the files synchronized.
However, I have a few files I do not want rsync to copy over because they
contain information specific (IP address) to the box hosting them.
Rsync seems to intermittently ignore the exclude statement and copies them
from time to time. Is there a way to absolutely prevent
2013 Feb 03
1
dsync backup questions
Hi,
I'm currently trying to setup remote backups of my emails but i'm running
into issues (mdbox format, indexes and storage in the same folder
hierarchy).
Local backup command: dsync -u "my_user" backup /backups/my_user
(1) Recently, I noticed that the local backup takes up twice the size as
the original mail location (8gb vs. 4gb). I purged alot of emails from the
original
2004 Feb 04
2
Problem browsing my unix-client - session setup failed: NT_STATUS _CANT_ACCESS_DOMAIN_INFO
I installed samba 3.0015.
I have a problem when I try to browse my machine from a windows client. In
effect I am not able to "open" my unix-client.
I checked nmbd and smbd and they are running.
If I try from my unix-clinet: smbclient -L my_user -W my_domain -L my_PDC I
can see shares.
If I try from my unix client: smbclient -L my_user -W my_domain -L
my_unix_client I get
session setup
2005 Aug 09
6
Failed authentication to a mysql database (bug or PEBKAC?)
Hello,
I'm trying to setup a mailserver running postfix and dovecot with mysql
as database backend. Postfix is already running and delivers mails just
fine. Unfortunately, dovecot has great problems connecting to the
database (using username + password). If I disable the password,
everthing works fine. But, thats harakiri, security wise ;-)
I tried dovecot-1.0-stable and the latest
2007 Sep 11
5
Node behavior
...s just fine). However, when I specify the following (see
nodes.pp, specifically), it applies firewall/firewall_mail2.pp to mail2
as well as any other server configured as a puppetd client.
--- BEGIN templates.pp ---
# templates.pp
node basenode {
include virt_all_users,
my_users,
dns,
sudoers,
package_management,
base_packages
}
node default inherits basenode {}
--- END templates.pp ---
--- BEGIN nodes.pp ---
# nodes.pp
node ''mail2.clientdomain.com'' inherits basenode {
import "...
2015 Aug 25
6
echo password into bash script
Hey guys,
I'm trying to echo my password into some commands inside of a bash script.
But I think I'm going about it incorrectly.
Here's the top part of my script:
#!/bin/bash
pub="~/.ssh/id_rsa.pub"
dps_pass="my_pass"
ssh="/usr/bin/ssh"
scp="/usr/bin/scp"
for i in 10.10.10.2{5,6}
do
echo "xfring key up"
echo $dps_pass | $scp $PUB
2012 Feb 14
2
Model with 2 foreign keys
Hi All,
I''d like to integrate a simple user-oriented messaging system into my
app.
I have a Message model, with :from_user_id, and :to_user_id (for the
user that sent and the user that recieved the message).
Obivously, (User) has_many :messages will fetch the messages that a
certain user has created, but not the ones that they have been sent.
Currently, I have this:
has_many :messages,
2007 Mar 06
3
GTalk/Jabber passing audio in 1.4.1!
I've just compiled Asterisk 1.4.1 and I'm happy to report that I've got
two-way audio between Google Talk and Asterisk! This IS an exciting moment
today in VoIP! This is just GREAT!
- Ronald Lewis
http://ronaldlewis.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2014 Apr 23
2
Ulimit problem - CentOS 5.10
Running across some curious stuff with ulimit on CentOS 5.10.
We have a non CentOS packaged version of Asterisk (using their packages) that we start at boot time with a typical RC script.
Recently it started whining that it couldn't open enough file handles.
As we dug further into this, it appears that at boot time, it inherits ulimit from init, which is pretty low: 1024.
We've set
2011 Oct 19
1
'doveadm quota get' dictionary SQL query ignores specified '@domain' part of username. bad config or bug?
Hi,
I'm setting up SQL quota usage in Dovecot2.
I've created a MAILBOX parameter table, 'PARAMS', that contains unique
<user>@<domain> pairs, with quota data.
mysql> select * from PARAMS;
+----+------------------------+------------+-------------+------------+
| ai | MAILBOX_user_domain | quota | quota_bytes | quota_msgs |
2005 Oct 29
1
how to restrict rscync to ONLY use ssh-pubkey transport & auth?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160
hi all,
i have two OSX boxes set up for ssh via pubkey auth only.
i'm setting up rsync comms for the first time.
i have rsyncd running on box A.
no-auth rsync from box B to/from box A's rsyncd works as expected.
rsync@B to/from rsyncd@A using pubkey-auth'd-ssh trasport:
rsync --verbose --stats --recursive -e "ssh -F
2008 Mar 27
0
handling post-remove URL / uninstall of application
Hi there,
I''ve configured my post-remove URL (which has to be directly to my
site, not an apps.facebook.com URL) and now I''m trying to figure out
how to handle this. It''s poorly documented here:
http://wiki.developers.facebook.com/index.php/Post-Remove_URL
It seems as though support for this is currently not yet in
Facebooker. In order to get it to work, it