Displaying 20 results from an estimated 8000 matches similar to: "Problem with file permission"
2016 Oct 14
2
First steps in Dovecot; IMAP not working
doveconf -n:
# 2.2.13: /etc/dovecot/dovecot.conf
# OS: Linux 2.6.32-042stab116.1 x86_64 Debian 8.6
mail_location = mbox:~/mail:INBOX=/var/mail/%u
namespace inbox {
inbox = yes
location =
mailbox Drafts {
special_use = \Drafts
}
mailbox Junk {
special_use = \Junk
}
mailbox Sent {
special_use = \Sent
}
mailbox "Sent Messages" {
special_use = \Sent
}
2010 Sep 16
1
Rsync failed as a cron task.
Any advice for an all around newbie.
I have a rsync command that works just fine whenever I have executed it directly from the command line.
/usr/local/bin/rsync -v -v -v -P --stats -z -r -t -p -l --delete --password-file=/export/home/webuser/.appprod --exclude "*.htaccess" /export/home/xternal/htdocs/ webuser at appprod::dprweb_www > /export/home/webuser/logs/rsync
But when we
2010 Sep 28
1
How to mirror only specified directories
I am trying to mirror only select directories from one server to another with rsync through its daemon mode.
Server A
/export
/home
/A-do
/A-not
/A-copy
/das
/htdocs
/docs
/em
/htdocs
/docs
/psb
/htdocs
/docs
/X-do
/X-not
/X-copy
Server B
/export
/home
/extranet
2010 Oct 29
1
What won't rsync sync this file?
For some reason, Rsync did not copy two specific file. Then I tried to specifically tell it to synchronize one of them and I get this result. *I* don't see any reason why to chose not to copy this file, but maybe on of you out there would see the obvious reason I am missing.
dprweb> /usr/local/bin/rsync -vvv --stats -Pzrtpl --delete --password-file=/export/home/webuser/.appprod
2010 Sep 21
2
Rsync command failing as a Cron Tab
We have this Rsync command that does what is desired when ran either directly OR with a shell script.
/usr/local/bin/rsync -vvv -P --stats -zrtpl --delete --password-file=/export/home/webuser/.appprod -
-log-file=/exp*/h*/web*/logs/rsync-log --exclude "*.htacc*" /exp*/h*/xter*/htdocs/ webuser at appprod::
dprweb_www > /exp*/h*/web*/logs/rsync-output
But no matter how we put it into
2010 Sep 30
3
Excluding most and including some problems continue.
Here is my rsync command as it currently stands.
/usr/local/bin/rsync -vvv --stats -Pzrtpl --delete --password-file=/export/home/webuser/.appprod --log-file=/export/home/webuser/logs/rsync-log -F /export/home/ webuser at appprod::dprweb_extranet/ > rsync-test
Here is the current .rsync-filter file.
+ das
+ em
+ enf
+ internal
+ itb
+ medtox
+ pml
+ psb
+ reg
+ whs
+ htdocs
+ docs
- /*
-
2005 Apr 21
2
[ win32utils-Support Requests-1813 ] Merely a test
Support Requests item #1813, was opened at 2005-04-20 23:48
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=412&aid=1813&group_id=85
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tom Copeland (tom)
Assigned to: Nobody (None)
Summary: Merely a test
Initial Comment:
Hm, did this go to to win32utils-devel?
Tom
2005 Nov 16
4
What happened to mysql connection?
I''ve been using Rails for more than six months and until today I had
no problem with mysql connection.
It''s a Mac OS X 10.4 box having rails installed and updated by gem. I
use a remote mysql server no local instance installed.
Here''s my config:
development:
adapter: mysql
database: hdchat
host: 10.0.0.1
username: webuser
password:
test:
adapter:
2020 Oct 26
0
How to shade area between lines in ggplot2
Hi
Put fill outside aes
p+geom_ribbon(aes(ymin = slope_1*x + intercept_1 - 1/w[2],
ymax = slope_1*x + intercept_1 + 1/w[2]), fill = "blue", alpha=0.1)
The "hole" is because you have two levels of data (red and blue). To get rid
of this you should put new data in ribbon call.
Something like
newdat <- trainset
newdat$z <- factor(0)
p+geom_ribbon(data=newdat, aes(ymin =
2018 Jan 22
2
substr gives empty output
In
y <- substr(x, i, 1)
your third integer needs to be the location not the number of digits, so change it to
y <- substr(x, i, i)
and you should get what you want.
Cheers,
Tim
> Date: Sun, 21 Jan 2018 10:50:31 -0500
> From: Ek Esawi <esawiek at gmail.com>
> To: Luigi Marongiu <marongiu.luigi at gmail.com>, r-help at r-project.org
> Subject: Re: [R] substr
2000 Jul 07
1
ownership problems on samba file server...
We have a fileserver running Redhat Linux 6.2, which is running samba 2.0.3. We have 6-12 users altering and creating files on this server. They authenticate through a Windows NT 4 (SP6) Domain server. All their machines are Windows 98 second edition. The majority of the drive is owned by a group called "staff", which each user belongs to. They seem to be able to modify & save
2020 Oct 23
2
How to shade area between lines in ggplot2
Thank you, but this split the area into two and distorts the shape of
the plot. (compared to
```
p + geom_abline(slope = slope_1, intercept = intercept_1 - 1/w[2],
linetype = "dashed", col = "royalblue") +
geom_abline(slope = slope_1, intercept = intercept_1 + 1/w[2],
linetype = "dashed", col = "royalblue")
```
Why there
2011 Apr 09
5
CentOS 5.6
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Just one thing: THANK YOU ALL!!!
Ciao,
luigi
- --
/
+--[Luigi Rosa]--
\
When your work speaks for itself, don't interrupt.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk2gWKsACgkQ3kWu7Tfl6ZQ/PACbBcTIsr4QjvuRqRAi4h+qO+fu
2020 Oct 23
0
How to shade area between lines in ggplot2
Hi
What about something like
p+geom_ribbon(aes(ymin = slope_1*x + intercept_1 - 1/w[2],
ymax = slope_1*x + intercept_1 + 1/w[2], fill = "grey70", alpha=0.1))
Cheers
Petr
> -----Original Message-----
> From: Luigi Marongiu <marongiu.luigi at gmail.com>
> Sent: Friday, October 23, 2020 11:11 AM
> To: PIKAL Petr <petr.pikal at precheza.cz>
> Cc: r-help
2020 Oct 31
0
fast way to find most common value across columns dataframe
Thank you. The problem was not finding the mode but applying it the R
way (I have the tendency to loop into each line of the dataframes,
which I believe is NOT the R way).
I'll try them.
Best regards
Luigi
On Sat, Oct 31, 2020 at 5:40 PM Bert Gunter <bgunter.4567 at gmail.com> wrote:
>
> As usual, a web search ("find statistical mode in R") brought up something that is
2016 Jul 17
2
doveadm feature request: move mailbox between users
A feature request for doveadm: move (or copy) mailboxes between users
Something like:
doveadm movemailbox -s User1 -d User2 Old/Mail/Box Destin/Ation/Path
(the same with copymailbox)
Or something like that is already possible?
--
Ciao,
luigi
/
+--[Luigi Rosa]--
\
It's not enough that we do our best;
sometimes we have to do what's required.
--Sir Winston Churchill
2016 Jul 17
2
doveadm feature request: move mailbox between users
aki.tuomi at dovecot.fi wrote on 17/07/2016 12:37:
>> A feature request for doveadm: move (or copy) mailboxes between users
>>
>> Something like:
>>
>> doveadm movemailbox -s User1 -d User2 Old/Mail/Box Destin/Ation/Path
> You can do this with
> - mailbox create
> - move
> - delete
See thread "Moving Maildir folders"
The problem is to
2009 Feb 03
5
Tracing a server problem
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have a Linux CentOS server, 4 Gb RAM, with 50 IMAP users.
The server is connected to LAN via a firewall appliance, no filtering applied.
Many users with different clients complain a lot of "server disconnected" errors.
On the server side Doveco does not report any kind of error. I just ab an
unusual rate of "IMAP(xxxxxx at xxxx):
2017 May 29
1
MySQL issue
Yes it is.
On Mon, May 29, 2017 at 12:28 AM, Luigi Rosa <lists at luigirosa.com> wrote:
> Amaechi Janneh wrote on 29/05/2017 02:47:
>
> May 28 20:20:32 AmaechiJ dovecot[10516]: auth-worker(10892): Error: sql(
>> aj at example.com,): User query failed: Table 'mailserver.users' doesn't
>> exist
>>
>
> Start MySQL command line interface with the
2012 Oct 14
2
Apache, IPv4, IPv6, virtual hosts
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I have a CentOS 6 box with a single IPv6 and a /64 IPv6
I would like to have on the same box a name-based virtual host of Apache with
IPv4 and an IP-based virtual host with IPv6.
The only solution I have found so far is to run two instances of Apache, one
on IPv4 and the other on IPv6.
In your opinion, are there other solutions to this problem?