Displaying 20 results from an estimated 238705 matches for "users".
Did you mean:
user
2012 Jan 15
5
Fonts issue during run time
I have installed an application and there is no error during installation.
On run time it gives message:
> Could not install 160 fonts. First Uninstalled font is 1. Please reinstall the fonts
> from the setup disks.
After ignoring above message I goto open a window made file and it says that encountered a serious error. needs to close down.
Kindly advise.
Thankyou.
2007 Nov 15
7
Plain Text Stories Chaining Scenarios
I''m writing a plain text story (testing the waters) and I have
scenarios that I need to chain in my specs.
Here is what I have so far:
Story: User purchasing tshirts
As a user
I want to checkout
So that I can purchase shirts
Scenario: User goes to checkout with nothing in cart
Given a user
And user has an empty cart
When user goes to checkout
Then user
2018 Sep 18
0
Duplicate mails on pop3 expunge with dsync replication on 2.2.35 (2.2.33.2 works)
Hi,
Has anyone any idea how to solve or further debug this issue? It seems
indeed that it was introduced in 2.2.34 and is still there in 2.3.2.1. I
found a couple of posts for this on the mailing list and elsewhere, but
no solution:
When a message is retrieved and immediately expunged, it gets replicated
back from the other dsync node. This usually happens with POP3 but with
IMAP as well,
2018 Aug 02
2
Duplicate mails on pop3 expunge with dsync replication on 2.2.35 (2.2.33.2 works)
Hi Tim,
> Do you have any new insights on the problem with reappearing mail using dovecot replication + pop3?
>
> It's driving me mad. I'm running dovecot 2.2.34 (874deae) on OpenBSD and it looks like I have the same problem as you have.
unfortunately there has been no response, I'm stuck with 2.2.33.2 for the time being.
I can only suspect it has something to do with
2008 Mar 10
1
POP3 Dictionary Attack Causes Complete Dovecot Failure Without Notice
Hi,
Whenever my Dovecot installation is POP3-dictionary-attacked, a large
number of log entries written to /var/log/local0 from the syslog showing
all the POP3 login and shadow lookup failures is produced and then the
entire Dovecot installation crashes, master and all. Unfortunately, it
was running unattended under normal use, is apparently quite hard to
reproduce (I wrote a Tcl script
2006 Mar 01
6
Same CID on multiple users(friends9 in SIP.conf
Hi there.
Is it possible to have different sip users have the same CallerId number
in sip.conf.
I need this because we got multiple companies on this Asterisk box.
Company A's internal numbers:
CID: User:
1000 - User 1
2000 - User 2
3000 - User 3
4000 - User 4
Company B's internal numbers:
CID: User:
1000 - User 5
2000 - User 6
3000 - Us...
2007 Dec 04
10
Unexpected message on :attr_accessor
...eaching
the forum--
I have a controller method
def edit
@user = User.find params[:id]
@user.password_confirmation = @user.password
end
The User class has an "attr_accessor :password_confirmation" definition (so
"password_confirmation" doesn''t exist in the users table). My spec has the
following
it "should find User on GET to users/edit/:id" do
User.should_receive(:find).and_return(@user)
@user.should_receive(:password_confirmation)
get ''edit'', :id => @user.id
end
I am asking it to expect that I will be assi...
2011 Jun 30
1
cross platform (freebsd) zfs pool replication
...ool v28 and a nexenta (opensolaris b134) running zpool v26.
Replication (with zfs send/receive) from the nexenta box to the freebsd works fine, but I have a problem accessing my replicated volume. When I''m typing and autocomplete with tab key the command cd /remotepool/us (for /remotepool/users) I get a panic.
check the panic @ http://www.boeri.be/panic.jpg
-> autocomplete tab does a ls command in the background, I think
I think there is a problem with NFSv4 acl/id mapping. Normal zfs (inititally created on the FreeBSD box) file systems are working fine.
The nexenta box is Active...
2009 Mar 04
10
total per user
so I am trying to sum month over month the amount that a user has
posted. So for example:
User 1: Jan $3000 Feb $4000 March $1500, etc. I can get this to work
if I sum totals (aggregate of all users) but just not by user.
Here is my code in the controller:
def index
@users = User.find :all, :order => ''name ASC''
@deal_groups = Deal.find(:all).group_by {|t|
t.saledate.at_beginning_of_month}
end
And then the code in the View
<% for user in @users %>
<ul...
2009 Jan 07
3
Excel permission in samba
Hi All,
Recently Moved from windows file server to samba file server
but still users are authenticating from windows ADS 2003 server
I have a strange problem.
smb.conf file config is bellow
############### START smb.conf file ###################
[global]
netbios name = AA-FTP
workgroup = airarabia
realm = airarabia.com
server string = Samba File Se...
2006 Jan 16
4
Creating two records at once
...k... but am I close?)
def register_user
if request.get?
@user = User.new
@profile = Profile.new
else
# Get the parameters from the form and put them in the user object
@user = User.new(params[:user])
@profile = Profile.new(params[:profile])
# Storing the users IP
@user.registered_from_ip = request.remote_ip
# Set the user''s status to a default of 2
# Status 1 = Admin
# Status 2 = Member
# Status 3 = General User
@user.status = "2"
@profile.user_id = @user.id
if @user.save and @profile.s...
2017 Sep 07
3
sieve stopped working and doveadm mailbox list without -s shows less folders then with
...th data: vfile
doveadm(<user>@<domain>): Debug: acl: acl username = <user>@<domain>
doveadm(<user>@<domain>): Debug: acl: owner = 0
doveadm(<user>@<domain>): Debug: acl vfile: Global ACLs disabled
doveadm(<user>@<domain>): Debug: Namespace users: type=shared,
prefix=user/%n/, sep=/, inbox=no, hidden=no, list=yes, subscriptions=no
location=mdbox:%h/mdbox:INDEXPVT=~/shared/%u
doveadm(<user>@<domain>): Debug: shared: root=/run/dovecot, index=,
indexpvt=, control=, inbox=, alt=
doveadm(<user>@<domain>): Debug: acl: init...
2006 Feb 05
8
Agile Rails book: depot problem 2
My second problem is:
Listing users, and deleting them doesn''t work.
If I try to list user, i just get this list:
User Delete
User Delete
User Delete
User Delete
I''m using this code in the login_controller:
def list_users
@all_users = User.find(:all)
end
def delete_user
@id = params[:id]
if id &a...
2005 Jun 14
6
VOIP-INFO down?
Seems to be all morning. I have not been able to access for several
hours now.
W
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Marcel van
Kaam, Fonetica
Sent: Tuesday, June 14, 2005 7:18 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: [Asterisk-Users] VOIP-INFO down?
Hi all,
Is VOIP-info down?
Marcel...
2004 Aug 13
6
sequences in the auth.log
Hi all,
I found similar sequences in the
/var/auth.log files of freebsd boxes, I supervise.:
Aug 13 13:56:08 www sshd[26091]: Illegal user test from 165.21.103.20
Aug 13 13:56:11 www sshd[26093]: Illegal user guest from 165.21.103.20
Aug 13 13:56:15 www sshd[26096]: Illegal user admin from 165.21.103.20
Aug 13 13:56:18 www sshd[26103]: Illegal user admin from 165.21.103.20
Aug 13 13:56:21 www
2005 Sep 17
22
AstriCon 2006 Location
The best place for Astri Con 2006 would definatly be
Omaha, Nebraska! ;) very central
...ah one could hope.
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com
2015 Apr 16
0
Dovecot 2.2.16: disappearing messages, mismatched summaries, duplicated messages, excessive full re-downloads
...ore message flags and status, which may change regularily.
> I've set
> mbox_dirty_syncs = no
> mbox_lazy_writes = no
you are using Maildir, no? They don't effect Maildir.
> mail_location = maildir:~:CONTROL=/var/no-quota/%u
this one hits me:
http://wiki2.dovecot.org/VirtualUsers/Home
"Home directory shouldn't be the same as mail directory. It's possible to
do that, but you might run into trouble with it sooner or later. Some
problems with this are: " ...
> mail_plugins = quota mail_log notify fts fts_lucene
I don't run FTS, where does lucene st...
2010 Oct 31
10
dedicate nic to drbd in domU
Hi,
i wont separate drbd traffic in domU to eth1 interface.
What is the best way to do that? I think about make eth1 nic passthrough
to my domU. Can i expect some problems with this configuration?
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2006 Apr 19
4
Another DRY question
I have some code working that lists only items from a particular user.
The code in my list action finds the user and then conditionally lists
only his/her items:
def list
user = User.find(session[:user])
user_id = user.id
@product_pages, @products = paginate :products, :per_page => 10,
:conditions =>[''user_id = ?'',
user.id]
2010 Jun 23
0
Rails 3 - AJAX Response
...====
<%= form_for(@user, :remote => true) do |f| %>
<%= f.select("type_id" , Type.all.collect{ |t|
[t.name,t.id] } ) %> #TYPE is another model. User belongs_to Type
<%= f.submit "Save" %>
<% end %>
====
The model:
====
class UsersController < ApplicationController
skip_before_filter :authorize, :only => [:new, :create]
# GET /users
# GET /users.xml
def index
@users = User.all
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @users }
end
end
# GET...