Displaying 7 results from an estimated 7 matches for "port_".
Did you mean:
port
2009 Nov 14
2
Patch: event port-based ioloop and notify
Greetings,
thanks to all of you who work on Dovecot!
I have prepared a small patch to support Solaris 10 and Opensolaris'
event port mechanism for both the ioloop and the notify subsystems. It
seems to work fine for me, but I haven't conducted any extensive
testing.
It would be great if someone could review and/or test it (and if it
could eventually enter the code base).
I have
2011 Apr 26
1
Problems saving an Object called by get
Hello. I am trying to save an object which I created using assign as
following:
assign(paste(NombreAlgoritmo,"_Portafolio",sep=""),PortafolioInicial)
save(get(paste(Algoritmo,"_Portafolio",sep="")),file=paste(camino,"\\Libreria\\Portafolio\\Port_",NombreAlgoritmo,"\\",NombreAlgoritmo,"_Portafolio.Rdata",sep=""))
but I am getting the following error:
Error in save(get(paste(NombreAlgoritmo, "_Portafolio", sep = "")), file =
paste(camino, :
object 'get(paste(NombreAlgoritmo, "...
2013 Jul 19
2
[PATCH 04/10] virtio: console: return -ENODEV on all read operations after unplug
...++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
> index 6bf0df3..a39702a 100644
> --- a/drivers/char/virtio_console.c
> +++ b/drivers/char/virtio_console.c
> @@ -749,6 +749,10 @@ static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
>
> port = filp->private_data;
>
> + /* Port is hot-unplugged. */
> + if (!port->guest_connected)
> + return -ENODEV;
> +
What if the port is hot-unplugged after this check? Should we serialize
the hot plug with inbuf...
2013 Jul 19
2
[PATCH 04/10] virtio: console: return -ENODEV on all read operations after unplug
...++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
> index 6bf0df3..a39702a 100644
> --- a/drivers/char/virtio_console.c
> +++ b/drivers/char/virtio_console.c
> @@ -749,6 +749,10 @@ static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
>
> port = filp->private_data;
>
> + /* Port is hot-unplugged. */
> + if (!port->guest_connected)
> + return -ENODEV;
> +
What if the port is hot-unplugged after this check? Should we serialize
the hot plug with inbuf...
2017 Jan 02
1
two listeners with different "driver = " configs
...listeners and then use CoS setup with multiple passdb:s.
something like:
service imap-login {
inet_listener imap {
port = 143
}
inet_listener imap2 {
port = 144
}
}
and then in first passdb fetch configuration variables:
passdb {
driver = passwd-file
args = username_format=port_%{lport} /etc/dovecot/extrasettings.passwd
result_failure = continue
result_internalfail = continue
result_success = continue
}
passdb {
?.
}
and in second passdb {} you can use %{passdb:variables} that you set in the first passdb. Probably can?t set driver = %{passdb:driver} tough..
maybe...
2013 Jul 19
0
[PATCH 04/10] virtio: console: return -ENODEV on all read operations after unplug
...sertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
> > index 6bf0df3..a39702a 100644
> > --- a/drivers/char/virtio_console.c
> > +++ b/drivers/char/virtio_console.c
> > @@ -749,6 +749,10 @@ static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
> >
> > port = filp->private_data;
> >
> > + /* Port is hot-unplugged. */
> > + if (!port->guest_connected)
> > + return -ENODEV;
> > +
>
> What if the port is hot-unplugged after this check...
2016 Dec 29
5
two listeners with different "driver = " configs
Hi,
I would like to have two seperate imap listeners, with different
authentication settings, but the mailstore and userbase etc will be
identical.
I know I can do this:
> service imap-login {
> inet_listener imap {
> port = 143
> }
> inet_listener imap2 {
> port = 144
> }
> }
But I'm unsure how to configure imap/143 with "driver =