Re: mutt working throu NFS only in read-only

2005-05-03 Thread Benjamin Keating
You can also omit the client-side lockd and statd options if you
include the `-L` option when mounting the NFS export (man mount_nfs,
nfsd)

- bpk

On 3/8/05, Doug Poland [EMAIL PROTECTED] wrote:
 On Tue, Mar 08, 2005 at 11:37:19AM +0300, Eugene M. Minkovskii wrote:
  Hello, I have some trouble in NFS configure. I need to read mail
  through NFS. So I say on the server:
 
 ...snip...
 
  System: FreeBSD 5.3-RELEASE-p5 (i386) [using ncurses 5.2]
 
 On FreeBSD 5.x you need to run rpc lockd and statd on both the client
 and server.  Here's snippets from /etc/rc.conf on my boxes:
 
 client:
 nfs_client_enable=YES
 rpc_lockd_enable=YES  # Run NFS rpc.lockd needed for
 rpc_statd_enable=YES  # Run NFS rpc.statd needed for
 
 server:
 nfs_server_flags=-u -n 10
 nfs_server_enable=YES
 rpc_lockd_enable=YES  # Run NFS rpc.lockd needed for
 rpc_statd_enable=YES  # Run NFS rpc.statd needed for
 
 Implement those changes, reboot (or restart daemons), and you should be
 good to go.
 
 --
 Regards,
 Doug
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


mutt working throu NFS only in read-only

2005-03-08 Thread Eugene M. Minkovskii
Hello, I have some trouble in NFS configure. I need to read mail
through NFS. So I say on the server:

[EMAIL PROTECTED] cat /etc/exports:
/var/mail 172.16.0.2

On client:
[EMAIL PROTECTED] sudo mount_nfs 172.16.0.1:/var/mail ~user/mnt/nfs
[EMAIL PROTECTED] ls -l ~user/mnt/nfs
...
-rw---  1 user   user   28610895  8  10:06 user
...
[EMAIL PROTECTED] mutt -f ~user/mnt/nfs/user

All working good, except one: mutt open this mailbox only in
read-only variant :(

Can I change this? You can see in ls command above --- I can read
and write my mailbox. For example, I try to change this file
using vim, and have a success

==
[EMAIL PROTECTED] mutt -v
Mutt 1.4.2.1i (2004-02-12)
Copyright (C) 1996-2002 Michael R. Elkins and others.
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
Mutt is free software, and you are welcome to redistribute it
under certain conditions; type `mutt -vv' for details.

System: FreeBSD 5.3-RELEASE-p5 (i386) [using ncurses 5.2]
Compile options:
-DOMAIN
-DEBUG
-HOMESPOOL  +USE_SETGID  +USE_DOTLOCK  +DL_STANDALONE  
-USE_FCNTL  +USE_FLOCK
+USE_POP  +USE_IMAP  -USE_GSS  +USE_SSL  -USE_SASL  
+HAVE_REGCOMP  -USE_GNU_REGEX  +COMPRESSED  
+HAVE_COLOR  +HAVE_START_COLOR  +HAVE_TYPEAHEAD  +HAVE_BKGDSET  
+HAVE_CURS_SET  +HAVE_META  +HAVE_RESIZETERM  
+HAVE_PGP  -BUFFY_SIZE -EXACT_ADDRESS  -SUN_ATTACHMENT  
+ENABLE_NLS  -LOCALES_HACK  +HAVE_WC_FUNCS  +HAVE_LANGINFO_CODESET  
+HAVE_LANGINFO_YESEXPR  
+HAVE_ICONV  -ICONV_NONTRANS  +HAVE_GETSID  +HAVE_GETADDRINFO  
-ISPELL
SENDMAIL=/usr/sbin/sendmail
MAILPATH=/var/mail
PKGDATADIR=/usr/local/share/mutt
SYSCONFDIR=/usr/local/etc
EXECSHELL=/bin/sh
-MIXMASTER
To contact the developers, please mail to [EMAIL PROTECTED].
To report a bug, please use the flea(1) utility.

vvv.initials
1.3.28.nr.threadcomplete
rr.compressed

-- 
Sensory  yours, Eugene  Minkovskii
 ,
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mutt working throu NFS only in read-only

2005-03-08 Thread Doug Poland
On Tue, Mar 08, 2005 at 11:37:19AM +0300, Eugene M. Minkovskii wrote:
 Hello, I have some trouble in NFS configure. I need to read mail
 through NFS. So I say on the server:
 
...snip...
 
 System: FreeBSD 5.3-RELEASE-p5 (i386) [using ncurses 5.2]

On FreeBSD 5.x you need to run rpc lockd and statd on both the client
and server.  Here's snippets from /etc/rc.conf on my boxes:

client:
nfs_client_enable=YES
rpc_lockd_enable=YES  # Run NFS rpc.lockd needed for
rpc_statd_enable=YES  # Run NFS rpc.statd needed for

server:
nfs_server_flags=-u -n 10
nfs_server_enable=YES
rpc_lockd_enable=YES  # Run NFS rpc.lockd needed for
rpc_statd_enable=YES  # Run NFS rpc.statd needed for

Implement those changes, reboot (or restart daemons), and you should be
good to go.

-- 
Regards,
Doug
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]